-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "final-pm",
"version": "2.25.2",
"author": "laino",
"description": "The Final Process Manager",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/laino/final-pm.git"
},
"bugs": {
"url": "https://github.com/laino/final-pm/issues"
},
"homepage": "https://github.com/laino/final-pm#readme",
"keywords": [
"process manager",
"process",
"manager",
"graceful",
"restarts",
"pm2",
"cli",
"fault tolerant",
"forever",
"load balancer",
"production",
"runtime",
"load-balancer",
"Keep process alive",
"autorestart",
"daemon",
"final-pm",
"finalpm",
"supervisor",
"supervisord",
"load balancer",
"load",
"balancer"
],
"directories": {
"doc": "doc",
"example": "examples",
"lib": "lib",
"test": "test"
},
"main": "index.js",
"scripts": {
"start": "./bin/cli",
"build-doc": "./doc/build.js",
"lint": "eslint index.js examples config doc test lib bin/*",
"test": "mocha --timeout 5000ms --slow 1000ms . test/tests",
"test-coverage": "nyc --reporter=html mocha --timeout 10000ms --slow 2000ms . test/tests",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"loc": "find bin/* lib config -type f | xargs cat | grep --invert-match -P \"^[/*{}(),;\\[\\] ]*$$\" | wc -l",
"autofix": "eslint --fix index.js examples config doc test lib bin/*"
},
"bin": {
"final-pm": "./bin/cli",
"final-pm-daemon": "./bin/daemon"
},
"dependencies": {
"chalk": "^4.1.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.1",
"deep-equal": "^2.0.5",
"final-rpc": "^1.2.0",
"humanize-duration": "^3.25.1",
"joi": "^17.3.0",
"lockfile": "^1.0.4",
"mkdirp": "^1.0.4",
"read-package-config": "^1.0.2",
"semver": "^7.3.4",
"stable": "^0.1.8",
"strip-ansi": "^6.0.0",
"table": "^6.0.7"
},
"nyc": {
"include": [ "lib", "loggers", "index.js" ],
"exclude": [ "lib/cli" ]
},
"devDependencies": {
"ansi-to-html": "*",
"chai": "",
"chai-as-promised": "",
"coveralls": "*",
"eslint": "*",
"eslint-plugin-mocha": "*",
"mocha": "*",
"nyc": "*",
"rmdir": "",
"samsam": "",
"tmp": "*",
"turndown": "*"
}
}