forked from alibaba/pipcook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.16 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
{
"name": "pipcook",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@lerna/bootstrap": "^3.18.4",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"docsify-cli": "^4.4.0",
"eslint": "^7.15.0",
"http-server": "^0.12.3",
"lerna": "^3.18.4",
"nyc": "^15.1.0",
"ts-node": "^8.6.2",
"typedoc": "^0.17.8",
"typescript": "^4.1.2"
},
"scripts": {
"build": "lerna run compile",
"postinstall": "lerna clean --yes && lerna bootstrap",
"docsify": "npm run typedoc && http-server -c-1 ./docs",
"lint": "eslint . --ext .ts --ext .js",
"pretest": "npm run lint",
"test": "lerna run test",
"test:pipeline": "sh ./tools/run_pipeline.sh",
"typedoc": "sh tools/mkdoc.sh",
"clean": "lerna run clean --parallel --concurrency 10",
"release": "lerna publish from-package --yes --no-verify-access",
"beta-release-tag": "lerna version prerelease --no-push --force-publish=* --yes",
"beta-release": "lerna publish from-package --no-verify-access --dist-tag beta",
"cov": "./tools/coverage.sh",
"cov:report": "nyc report -r=lcov"
}
}