-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.73 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.73 KB
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
69
70
{
"name": "cluster-service",
"version": "2.1.4",
"author": {
"name": "Aaron Silvas",
"email": "asilvas@godaddy.com"
},
"description": "Turns your single process code into a fault-resilient multi-process service with built-in REST & CLI support",
"main": "./cluster-service.js",
"scripts": {
"start": "node scripts/start.js",
"lint": "npm run-script lint-src && npm run-script lint-test",
"lint-src": "jshint bin lib cluster-service.js",
"lint-test": "jshint --config .test-jshintrc test",
"cover": "nyc mocha --ui bdd -R spec -t 5000",
"test-devel": "mocha bdd -R spec -t 5000 test/*.js test/workers/*.js",
"test": "npm run-script lint && npm run-script cover"
},
"dependencies": {
"async": "^3.2.2",
"colors": "^1.4.0",
"extend": "^3.0.2",
"minimist": "^1.2.6"
},
"devDependencies": {
"jshint": "^2.12.0",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"request": "^2.88.2",
"sinon": "^7.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/godaddy/node-cluster-service.git"
},
"license": "MIT",
"homepage": "https://github.com/godaddy/node-cluster-service",
"bugs": {
"url": "https://github.com/godaddy/node-cluster-service/issues"
},
"bin": {
"cluster-service": "./bin/cservice",
"cservice": "./bin/cservice",
"cserviced": "./bin/cserviced"
},
"engines": {
"node": ">=6"
},
"keywords": [
"cluster",
"service",
"ha",
"high availability",
"cli",
"remote access",
"multi process",
"master",
"child",
"process",
"monitor",
"monitoring",
"continous integration",
"healthcheck",
"heartbeat",
"health check",
"heart beat",
"REST",
"resilient"
]
}