-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 2.18 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
{
"name": "root",
"private": true,
"devDependencies": {
"husky": "^4.2.5",
"lerna": "^3.20.2",
"ts-node": "^9.1.1"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --ignore-scripts --include-dependencies --no-ci --hoist && npm run build",
"bootstrap:block": "npm run bootstrap -- --scope @ethereumjs/block",
"bootstrap:blockchain": "npm run bootstrap -- --scope @ethereumjs/blockchain",
"bootstrap:client": "npm run bootstrap -- --scope @ethereumjs/client",
"bootstrap:common": "npm run bootstrap -- --scope @ethereumjs/common",
"bootstrap:devp2p": "npm run bootstrap -- --scope @ethereumjs/devp2p",
"bootstrap:ethash": "npm run bootstrap -- --scope @ethereumjs/ethash",
"bootstrap:trie": "npm run bootstrap -- --scope @ethereumjs/trie",
"bootstrap:tx": "npm run bootstrap -- --scope @ethereumjs/tx",
"bootstrap:vm": "npm run bootstrap -- --scope @ethereumjs/vm",
"build": "lerna run build --stream",
"build:tree": "lerna run build --stream --include-dependencies",
"build:block": "npm run build:tree -- --scope @ethereumjs/block",
"build:blockchain": "npm run build:tree -- --scope @ethereumjs/blockchain",
"build:client": "npm run build:tree -- --scope @ethereumjs/client",
"build:common": "npm run build:tree -- --scope @ethereumjs/common",
"build:devp2p": "npm run build:tree -- --scope @ethereumjs/devp2p",
"build:ethash": "npm run build:tree -- --scope @ethereumjs/ethash",
"build:trie": "npm run build:tree -- --scope @ethereumjs/trie",
"build:tx": "npm run build:tree -- --scope @ethereumjs/tx",
"build:vm": "npm run build:tree -- --scope @ethereumjs/vm",
"lint": "lerna run lint --stream --parallel -- --mode compact",
"lint:fix": "lerna run lint:fix --stream --parallel",
"test": "lerna exec npm run test --parallel",
"coverage": "lerna run coverage --stream",
"docs:build": "lerna run docs:build --ignore @ethereumjs/ethash",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/test-build packages/*/dist packages/*/dist.browser packages/*/package-lock.json"
}
}