forked from trufflesuite/truffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"private": true,
"scripts": {
"bootstrap": "npx lerna bootstrap",
"prepare": "lerna run prepare --stream --concurrency=1",
"publish-release": "./scripts/publish-release.sh",
"publish-dist-tag": "./scripts/publish-dist-tag.sh",
"prepare-release": "./scripts/prepare-release.sh",
"test": "lerna run test --stream --concurrency=1 -- --colors",
"ci": "./scripts/ci.sh",
"geth": "./scripts/geth.sh",
"solc-bump": "node ./scripts/solc-bump.js",
"update": "lernaupdate"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"husky": "^1.2.0",
"lerna": "^3.16.4",
"lerna-update-wizard": "^0.16.0",
"lint-staged": "^7.3.0",
"nyc": "^13.0.1",
"prettier": "1.14.3",
"prs-merged-since": "^1.1.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.ts": [
"prettier --write",
"git add"
]
}
}