forked from midwayjs/midway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.06 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
{
"name": "midway_project",
"description": "a web framework for complex Node.js application",
"version": "1.0.0",
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^16.7.10",
"@vercel/ncc": "^0.32.0",
"jest": "^27.0.3",
"lerna": "^3.20.2",
"lerna-relinker": "^1.4.0",
"mwts": "^1.0.5",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.2",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.1.0",
"why-is-node-running": "^2.2.0"
},
"scripts": {
"autod": "lerna run autod",
"test": "lerna run test",
"link": "lerna run link",
"cov": "lerna run cov --concurrency=2 --stream",
"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",
"release": "rm -f ./packages/.DS* && sh scripts/publish.sh",
"bootstrap": "rm -f ./packages/.DS* && lerna bootstrap --concurrency 4",
"clean": "lerna clean --yes && rm -rf ./packages/**/package-lock.json && rm -f package-lock.json",
"build": "sh scripts/build.sh",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS",
"postinstall": "opencollective-postinstall",
"version": "node ./scripts/generate_rollback.js && node ./scripts/generate_version.js && git add .",
"lint": "lerna exec mwts check",
"lint:fix": "lerna exec mwts fix",
"typedoc": "typedoc && cp ./scripts/custom.css ./docs/api-reference/assets/css"
},
"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": ">= 12.0.0"
},
"license": "MIT",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/midway"
}
}