forked from trufflesuite/truffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"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": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^7.9.0",
"husky": "^4.3.0",
"lerna": "^3.16.4",
"lerna-update-wizard": "^0.16.0",
"lint-staged": "^10.4.2",
"nyc": "^13.0.1",
"prettier": "^2.0.5",
"prs-merged-since": "^1.1.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}