-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.29 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
{
"name": "z1",
"version": "4.1.2",
"preferGlobal": true,
"description": "Node.js cluster manager",
"main": "remote/index.js",
"scripts": {
"test-init": "mkdir -p reports",
"lint": "yarn test-init && node_modules/eslint/bin/eslint.js .",
"test": "yarn test-init && ./cli/main.js exit && rm -rf coverage && nyc mocha"
},
"bin": "cli/main.js",
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robojones/z1.git"
},
"keywords": [
"cluster",
"worker",
"manage",
"manager",
"clusters",
"management",
"process",
"cli"
],
"author": "robojones",
"license": "MIT",
"bugs": {
"url": "https://github.com/robojones/z1/issues"
},
"homepage": "https://github.com/robojones/z1#readme",
"nyc": {
"exclude": [
"test-app/*",
"test/*"
],
"reporter": [
"lcov"
]
},
"devDependencies": {
"command-test": "^1.1.1",
"eslint": "^4.10.0",
"eslint-config-ultra": "^1.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0"
},
"dependencies": {
"better-events": "^3.0.5",
"colors": "^1.1.2",
"commander": "^2.11.0",
"mkdirp": "^1.0.4",
"mz": "^2.7.0",
"revents": "^1.0.2",
"smart-promisify": "^1.0.5",
"x-time": "^1.1.9"
}
}