forked from node-pinus/pinus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.82 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
{
"name": "pinus-workspaces",
"version": "0.0.1",
"devDependencies": {
"lerna": "^2.5.1",
"lerna-relinker": "^1.4.0",
"nyc": "^11.2.1",
"pinus-site-tools": "^1.0.6",
"ts-node": "^3.2.0",
"tslint": "^5.9.1",
"typedoc": "^0.9.0",
"typescript": "^2.9.2"
},
"scripts": {
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('请使用 Yarn 来代替 NPM 安装依赖,请看:https://yarnpkg.com/zh-Hans/docs/install')\"",
"test": "mocha",
"cov": "sh scripts/cov.sh",
"ci": "yarn run build && yarn run lint",
"purge": "yarn run clean && rm -rf node_modules",
"reset": "yarn run purge && npm i && yarn run ci",
"canary": "lerna publish --canary",
"beta": "lerna publish --npm-tag beta --force-publish=* --skip-git",
"next": "lerna publish --npm-tag next --skip-git",
"publish": "lerna publish",
"force-publish": "lerna publish --force-publish=*",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes",
"updated": "lerna updated",
"li": "lerna init",
"build": "lerna run build",
"lint": "lerna run lint",
"fix-lint": "lerna run fix-lint",
"gen-api-ref": "lerna run gen-api-ref",
"gen-site": "pst build && yarn run gen-api-ref",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS"
},
"keywords": [
"netease",
"pinus",
"server",
"framework",
"game server",
"pinus",
"runtime",
"cluster",
"service",
"application"
],
"homepage": "https://github.com/node-pinus/pinus",
"repository": {
"type": "git",
"url": "https://github.com/node-pinus/pinus.git"
},
"engines": {
"node": ">= 8.5.0"
},
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"tools/*",
"plugins/*",
"examples/simple-example/*",
"examples/websocket-chat/*",
"examples/websocket-chat-ts-run/*",
"examples/robot-sample"
]
}