-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·39 lines (38 loc) · 1.22 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
38
39
{
"name": "smart-contract-upgradability",
"version": "0.1.0",
"license": "MIT",
"main": "lib/index.js",
"files": [
"build",
"lib",
"src"
],
"dependencies": {
"moment": "^2.18.1",
"truffle-blockchain-utils": "^0.0.3",
"truffle-hdwallet-provider": "^0.0.3",
"zeppelin-solidity": "1.6.0"
},
"devDependencies": {
"lodash": "^4.17.5",
"snazzy": "^7.0.0",
"solidity-coverage": "sc-forks/solidity-coverage#6a13575e3597e491299a9dd1474c64c9066faa69",
"standard": "^10.0.3",
"truffle": "^4.1.5",
"truffle-contract": "3.0.1",
"truffle-ext": "0.1.8"
},
"scripts": {
"build": "node scripts/build.js",
"cleanup": "rm -rf build/ && mkdir build && rm -rf lib/ && mkdir lib",
"compile": "npm run cleanup && truffle compile --all && npm run build",
"deploy": "npm run cleanup && truffle migrate --reset && npm run build",
"deploy-rinkeby": "npm run cleanup && truffle migrate --reset --network rinkeby && npm run build",
"test": "npm run build && scripts/test.sh",
"test:truffle": "truffle test",
"test:coverage": "npm run build && npm run solidity-coverage",
"testrpc": "scripts/runTestrpc.sh",
"lint": "standard --verbose | snazzy"
}
}