-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 KB
/
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
{
"name": "atomicloans-solidity",
"version": "0.1.0",
"dependencies": {
"@liquality/crypto": "^0.4.0",
"@liquality/ethereum-utils": "^0.4.20",
"@mblackmblack/to-seconds": "^0.1.0",
"axios": "^0.19.0",
"bignumber.js": "^9.0.0",
"chainlink": "^0.8.2",
"decimal.js": "^10.2.0",
"dotenv": "8.1.0",
"lodash": "^4.17.11",
"openzeppelin-solidity": "^2.2.0",
"truffle-contract": "^4.0.11",
"truffle-hdwallet-provider": "^1.0.9",
"truffle-plugin-verify": "0.3.3",
"web3": "1.2.1"
},
"scripts": {
"test": "truffle test",
"test:medianizer": "truffle test ./test/medianizer.js",
"test:chainlink": "truffle test ./test/chainlink.js",
"test:oraclize": "truffle test ./test/oraclize.js",
"coverage": "npx solidity-coverage",
"build-contracts": "sol-merger \"./contracts/*.sol\" ./build"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"chai-bn": "^0.2.0",
"coveralls": "^3.0.5",
"openzeppelin-test-helpers": "^0.5.0",
"solidity-coverage": "^0.7.2"
}
}