forked from troygoode/node-diehard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "diehard",
"version": "1.5.3",
"author": "Troy Goode <troygoode@gmail.com> (https://github.com/troygoode/)",
"description": "Gracefully clean up your program at termination with multiple sync and/or async handlers. Wraps the `death` npm module.",
"keywords": [
"sigint",
"sigterm",
"sigkill",
"sigquit",
"exception",
"kill",
"terminate",
"process",
"clean",
"die"
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"homepage": "https://github.com/troygoode/node-diehard/",
"bugs": {
"url": "https://github.com/troygoode/node-diehard/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/troygoode/node-diehard.git"
},
"dependencies": {
"async": "^3",
"death": "^1",
"debug": "^3"
},
"devDependencies": {
"jslint": "^0.12.0",
"mocha": "^5"
},
"scripts": {
"lint": "find . -path ./node_modules -prune -o -name '*.js' -print0 -o -name '*.json' -print0 | xargs -0 node node_modules/jslint/bin/jslint",
"test": "npm run lint && mocha"
}
}