-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
72 lines (72 loc) · 1.7 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
69
70
71
72
{
"name": "strong-supervisor",
"description": "supervisor and monitor for node.js applications",
"author": "Sam Roberts <[email protected]>",
"license": "Artistic-2.0",
"version": "6.2.0",
"main": "index.js",
"keywords": [
"agent",
"cluster",
"forever",
"master",
"pm",
"process",
"runner",
"supervisor",
"strongloop",
"strongops",
"supervisor"
],
"homepage": "https://github.com/strongloop/strong-supervisor",
"repository": {
"type": "git",
"url": "git://github.com/strongloop/strong-supervisor.git"
},
"bugs": {
"url": "https://github.com/strongloop/strong-supervisor/issues"
},
"bin": {
"sl-run": "./bin/sl-run.js",
"sl-runctl": "./bin/sl-runctl.js",
"slr": "./bin/sl-run.js",
"slrc": "./bin/sl-runctl.js"
},
"scripts": {
"pretest": "eslint ./",
"test": "tap --timeout 300 test/test-*.js"
},
"dependencies": {
"appmetrics": "^3.x",
"appmetrics-dash": "^3.0.0",
"async": "^2.0.0",
"debug": "^2.0.0",
"dotenv": "^1.0.0",
"lodash": "^4.14.1",
"posix-getopt": "^1.1.0",
"strong-cluster-control": "^2.0.0",
"strong-control-channel": "^2.0.0",
"strong-log-transformer": "^1.0.0",
"strong-npm-ls": "^1.0.0",
"strong-statsd": "^2.0.0",
"strong-trace": "^1.2.0",
"strong-url-defaults": "^1.2.0"
},
"devDependencies": {
"byline": "^5.x",
"eslint": "^2.x",
"eslint-config-strongloop": "^2.x",
"express": "^4.0.0",
"optimist": "~0.6.0",
"semver": "^5.3.0",
"strong-express-metrics": "^2.0.0",
"tap": "^10.7.0"
},
"engines": {
"node": ">=4"
},
"optionalDependencies": {
"heapdump": "^0.3.5",
"modern-syslog": "^1.x"
}
}