This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
80 lines (80 loc) · 2.1 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "midway-cli",
"description": "midway cli",
"version": "1.0.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/jest": "^29",
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.18",
"benchmark": "^2.1.4",
"coffee": "^5.4.0",
"eslint": "^7.9.0",
"eslint-plugin-jest": "^24.0.2",
"execa": "^4.0.3",
"gh-pages": "^1.2.0",
"jest": "^29",
"lerna": "3",
"mwts": "^1.0.5",
"rimraf": "^3.0.0",
"ts-jest": "^29",
"typescript": "^4.1.0"
},
"scripts": {
"autod": "lerna run autod",
"test": "lerna run test",
"cov": "lerna run cov --concurrency=1",
"cov-win": "lerna run cov-win --concurrency=1",
"ci": "npm run build && npm run cov",
"purge": "npm run clean && rm -rf package-lock.json && rm -rf node_modules",
"reset": "npm run purge && npm i && npm run ci",
"canary": "sh scripts/publish.sh --canary",
"beta": "sh scripts/publish.sh --npm-tag beta --force-publish=*",
"next": "sh scripts/publish.sh --npm-tag next",
"release": "rm -f ./packages/.DS* && sh scripts/publish.sh",
"clean": "lerna clean --yes && rm -rf ./packages/**/package-lock.json",
"bootstrap": "rm -f ./packages/.DS* && lerna bootstrap",
"build": "sh scripts/build.sh",
"gen-rollback": "node scripts/rollback.js",
"prettier": "prettier --write 'packages/**/*.ts'",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS",
"lint": "lerna exec mwts check",
"lint:fix": "lerna exec mwts fix"
},
"keywords": [
"midway",
"bin"
],
"homepage": "https://github.com/midwayjs/cli",
"repository": {
"type": "git",
"url": "https://github.com/midwayjs/cli.git"
},
"engines": {
"node": ">= 10"
},
"license": "MIT",
"nyc": {
"include": [
"packages/**/src/*.ts",
"packages/**/src/**/*.ts"
],
"exclude": [
"**/typings",
"**/*.d.ts",
"**/dist",
"**/test",
"**/src/domain.ts",
"**/src/interface.ts"
],
"extension": [
".ts",
".js"
],
"reporter": [
"json",
"html"
],
"all": true
}
}