forked from midwayjs/midway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.93 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
{
"name": "midway_project",
"description": "a web framework for complex Node.js application",
"version": "1.0.0",
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "16.11.26",
"@vercel/ncc": "0.33.3",
"autocannon": "7.7.0",
"jest": "27.5.1",
"lerna": "4.0.0",
"mwts": "1.3.0",
"tree-kill": "1.2.2",
"ts-jest": "27.1.3",
"ts-node": "10.5.0",
"typedoc": "0.22.12",
"typescript": "4.5.5",
"why-is-node-running": "2.2.1"
},
"scripts": {
"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": "npm run build && lerna publish major --canary --preid alpha --dist-tag alpha",
"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",
"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"
},
"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"
}
}