forked from trufflesuite/truffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 871 Bytes
/
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
{
"private": true,
"scripts": {
"build:debugger": "cd packages/truffle-debugger && npm run build",
"lerna:bootstrap": "lerna bootstrap",
"bootstrap": "npm run lerna:bootstrap && npm run build:debugger",
"test": "lerna run test --stream --concurrency=1 -- --colors",
"ci": "./scripts/ci.sh",
"geth": "./scripts/geth.sh",
"solc-bump": "node ./scripts/solc-bump.js"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"husky": "^1.1.2",
"lerna": "^3.4.3",
"lint-staged": "^7.3.0",
"nyc": "^13.0.1",
"prettier": "1.14.3"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}