forked from sindresorhus/exit-hook
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
66 lines (66 loc) · 1.2 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
{
"name": "async-exit-hook",
"version": "2.0.1",
"description": "Run some code when the process exits (supports async hooks and pm2 clustering)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tapppi/async-exit-hook.git"
},
"author": {
"name": "Tapani Moilanen",
"email": "[email protected]",
"url": "https://github.com/tapppi"
},
"contributors": [
{
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "http://sindresorhus.com"
}
],
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "xo && nyc ava",
"release": "standard-version"
},
"files": [
"index.js"
],
"keywords": [
"exit",
"quit",
"process",
"hook",
"graceful",
"handler",
"shutdown",
"sigterm",
"sigint",
"sighup",
"pm2",
"cluster",
"child",
"reload",
"async",
"terminate",
"kill",
"stop",
"event"
],
"devDependencies": {
"ava": "^0.21.0",
"coveralls": "^2.11.14",
"nyc": "^10.3.2",
"standard-version": "^4.2.0",
"xo": "^0.18.2"
},
"ava": {
"files": [
"test/*.js",
"!tests/cases/*"
]
}
}