forked from midwayjs/midway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.65 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "midway",
"description": "a web framework for complex Node.js application",
"version": "1.0.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"autocannon": "^2.4.1",
"chalk": "^2.4.2",
"debug": "^4.1.1",
"gh-pages": "^1.2.0",
"git-hooks": "^1.1.10",
"lerna": "^3.14.1",
"lerna-relinker": "^1.4.0",
"node-ab": "0.0.6",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.2",
"tree-kill": "^1.2.0",
"tslint": "^5.17.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.5.1",
"vuepress": "^0.14.11"
},
"scripts": {
"autod": "lerna run autod",
"test": "lerna run test",
"cov": "lerna run cov --concurrency=1",
"ci": "npm run build && npm run cov",
"purge": "npm run clean && 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",
"publish": "rm -f ./packages/.DS*; sh scripts/publish.sh",
"bootstrap": "rm -f ./packages/.DS*; lerna bootstrap --hoist --no-ci",
"clean": "lerna clean --yes; rm -rf ./packages/**/package-lock.json",
"build": "sh scripts/build.sh",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "node ./scripts/deploy_doc.js",
"gen-api-ref": "node ./packages/midway-bin/bin/midway-bin.js doc --options typedoc.js",
"postinstall": "opencollective-postinstall"
},
"keywords": [
"container",
"runtime",
"cluster",
"service",
"application",
"webframework"
],
"homepage": "http://github.com/midwayjs/midway",
"repository": {
"type": "git",
"url": "http://github.com/midwayjs/midway.git"
},
"engines": {
"node": ">= 8.2.1"
},
"license": "MIT",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/midway"
},
"nyc": {
"include": [
"packages/**/src/*.ts",
"packages/**/src/**/*.ts",
"packages/midway-bin/lib/*.js",
"packages/midway-init/lib/*.js"
],
"exclude": [
"**/typings",
"**/*.d.ts",
"**/dist",
"**/test",
"**/src/domain.ts",
"**/src/interface.ts",
"packages/midway-web/src/baseController.ts",
"packages/midway-web/src/decorators/babel.ts"
],
"extension": [
".ts",
".js"
],
"reporter": [
"json",
"html"
],
"all": true
}
}