forked from liquidity-network/nocust-contracts-solidity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.08 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
37
{
"name": "nocust-contracts-solidity",
"version": "0.8.0",
"description": "",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf coverage",
"compile": "truffle compile",
"console": "truffle console",
"coverage": "npm run clean && MODE=coverage truffle test; istanbul report html",
"documentation": "soldoc --in contracts -o docs",
"lint": "solhint --config .solhint.json contracts/*.sol contracts/**/*.sol",
"test": "truffle test",
"trace": "MODE=trace truffle test"
},
"author": "Rami Khalil <rami@liquidity.network>",
"license": "GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007",
"dependencies": {
"truffle": "^5.0.8",
"web3": "^1.0.0-beta.48",
"web3-eth-accounts": "^1.0.0-beta.46",
"web3-utils": "^1.0.0-beta.35"
},
"devDependencies": {
"@0x/sol-coverage": "^3.0.3",
"@0x/sol-profiler": "^3.1.3",
"@0x/sol-trace": "^2.0.9",
"@0x/subproviders": "^4.0.5",
"@soldoc/soldoc": "^0.4.3",
"istanbul": "^0.4.5",
"solc": "^0.4.24",
"solhint": "^2.0.0"
}
}