-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 948 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "bloinxcontracts",
"version": "1.0.0",
"description": "smart contracts for bloinx",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "bash ./scripts/run_tests.sh",
"coverage": "npx truffle run coverage"
},
"keywords": [
"bloinx",
"savingGroups",
"solidity"
],
"author": "BX Smart Labs",
"license": "BSD 3-Clause License",
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"@truffle/hdwallet-provider": "^2.0.6",
"truffle": "5.5.4"
},
"devDependencies": {
"@codechecks/client": "^0.1.12",
"@openzeppelin/test-helpers": "^0.5.15",
"coveralls": "^3.1.1",
"dotenv": "^10.0.0",
"solhint": "^3.3.6",
"eth-gas-reporter": "^0.2.23",
"mocha-lcov-reporter": "^1.3.0",
"solidity-coverage": "0.7.17",
"truffle-plugin-verify": "^0.5.24",
"web3": "^1.7.0"
}
}