-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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
{
"name": "genesis-generator",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"scripts": {
"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",
"test": "scripts/test.sh",
"test:all": "./generate.sh && scripts/test.sh",
"coverage": "scripts/coverage.sh",
"compile": "truffle compile",
"generate": "./generate.sh",
"combine:token": "./combineContracts.js MainToken",
"combine:sale": "./combineContracts.js SaleManager",
"combine:whitelist": "./combineContracts.js Whitelist"
},
"directories": {
"test": "test"
},
"author": "2BKO <[email protected]>",
"license": "MIT",
"devDependencies": {
"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",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eth-gas-reporter": "^0.1.7",
"ethereumjs-util": "^5.1.2",
"ethjs-abi": "^0.2.1",
"ganache-cli": "6.1.8",
"solidity-coverage": "git+https://github.com/rotcivegaf/solidity-coverage.git#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
"solium": "^1.1.6",
"truffle": "^5.0.0",
"mustache": "^2.3.0",
"@haechi-labs/vvisp-utils": "^1.0.0",
"openzeppelin-test-helpers": "^0.1.1"
}
}