-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.9 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": " ",
"version": "1.0.0",
"description": " ",
"directories": {
"test": "test"
},
"scripts": {
"test": "scripts/test.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint:all": "npm run lint && npm run lint:sol",
"lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
"console": "truffle console",
"coverage": "scripts/coverage.sh",
"deploy-rinkeby": "rm -f -R build && truffle deploy --network rinkeby --reset && node scripts/init_contracts.js && node scripts/set_approval_for_all_by_promoter.js",
"deploy-live": "rm -f -R build && truffle deploy --network live --reset && NETWORK=mainnet node scripts/init_contracts.js && NETWORK=mainnet node scripts/set_approval_for_all_by_promoter.js"
},
"author": " ",
"license": " ",
"devDependencies": {
"await-delay": "^1.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.0.0",
"chai-bignumber": "^2.0.0",
"coveralls": "^3.0.3",
"delay": "^4.2.0",
"dotenv": "^6.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"ethereumjs-testrpc": "^6.0.1",
"ethereumjs-util": "^5.2.0",
"eth-gas-reporter" : "^0.2.0",
"ethjs-abi": "^0.2.1",
"graceful-fs": "^4.1.15",
"js-sha3": "^0.8.0",
"mocha-lcov-reporter": "^1.3.0",
"openzeppelin-solidity": "^1.12.0",
"solidity-coverage": "^0.5.11",
"solium": "^1.2.4",
"truffle": "^4.1.15",
"truffle-contract": "^3.0.7",
"truffle-hdwallet-provider": "1.0.4",
"web3": "^0.20.7"
}
}