-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
37 lines (37 loc) · 1.27 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
{
"name": "@aragon/cli-monorepo",
"private": true,
"devDependencies": {
"codecov": "^3.6.1",
"husky": "^4.2.1",
"lerna": "^3.14.1"
},
"scripts": {
"clean": "git clean -fixd",
"prepare": "lerna bootstrap",
"delete-shrinkwraps": "lerna exec -- rm npm-shrinkwrap.json",
"create-shrinkwraps": "lerna exec -- npm shrinkwrap",
"link-bin": "lerna run --parallel link-bin",
"unlink-bin": "lerna run --parallel unlink-bin",
"build": "lerna run --parallel build",
"build:watch": "lerna run --parallel build:watch",
"lint": "lerna run --parallel lint",
"lint:fix": "lerna run --parallel lint:fix",
"prepublishOnly": "lerna run --parallel prepublishOnly",
"pretest": "node scripts/setup-integration-tests.js",
"posttest": "node scripts/teardown-integration-tests.js",
"test": "lerna run --parallel test",
"test:coverage": "lerna run --parallel test:coverage",
"test:integration": "lerna run --parallel test:integration",
"report-coverage": "codecov",
"release": "lerna version",
"publish:nightly": "lerna publish from-package --dist-tag nightly --yes",
"git:clean": "git --no-pager diff && git stash"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
}
}