-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "integration-box",
"version": "1.0.0",
"description": "truffle CI integration box",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"ganache": "ganache-cli -p 9545 -m 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat' > /dev/null &",
"stop": "sudo kill `sudo lsof -t -i:9545`",
"test": "npm run ganache sleep 5 && npm run lint ./ && npm run solium && truffle test && npm run stop",
"coverage": "./node_modules/.bin/solidity-coverage",
"fix": "eslint ./ --fix",
"lint": "eslint ./",
"solium": "solium -d contracts/",
"solium:fix": "solium -d contracts/ --fix"
},
"keywords": [
"truffle",
"CI",
"box"
],
"author": "Nicolas Frega - <https://github.com/NFhbar>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "8.2.3",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.0.2",
"chai-as-promised": "7.0.0",
"chai-bignumber": "2.0.0",
"coveralls": "3.0.0",
"eslint": "4.19.1",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"ganache-cli": "6.1.0",
"solidity-coverage": "0.5.2",
"solium": "1.1.7"
},
"dependencies": {
"dotenv": "5.0.1",
"ethereumjs-wallet": "0.6.0",
"truffle-wallet-provider": "0.0.5"
}
}