-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
67 lines (67 loc) · 1.61 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
{
"name": "egg-cluster",
"version": "2.3.0",
"description": "cluster manager for egg",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test --ts false",
"cov": "egg-bin cov --prerequire --timeout 100000 --ts false",
"ci": "npm run lint && npm run cov",
"contributor": "git-contributor"
},
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-cluster.git"
},
"keywords": [
"egg",
"cluster",
"process"
],
"author": "dead-horse <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggjs/egg-cluster/issues"
},
"homepage": "https://github.com/eggjs/egg-cluster#readme",
"dependencies": {
"await-event": "^2.1.0",
"cfork": "^1.7.1",
"cluster-reload": "^1.0.2",
"detect-port": "^1.3.0",
"egg-logger": "^3.3.0",
"egg-utils": "^2.4.1",
"get-ready": "^2.0.1",
"graceful-process": "^1.2.0",
"is-type-of": "^1.2.1",
"ps-tree": "^1.2.0",
"sendmessage": "^1.1.0",
"terminal-link": "^2.1.1",
"utility": "^1.15.0"
},
"devDependencies": {
"address": "^1.0.3",
"coffee": "^5.2.1",
"egg": "^3.9.0",
"egg-bin": "^6.4.0",
"egg-errors": "^2.2.0",
"egg-mock": "^5.4.0",
"eslint": "^8.26.0",
"eslint-config-egg": "^12.1.0",
"git-contributor": "^2.1.5",
"pedding": "^1.1.0",
"supertest": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"urllib": "^3.17.1"
},
"engines": {
"node": ">= 14.0.0"
}
}