-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 974 Bytes
/
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
{
"name": "node-graceful-shutdown",
"version": "1.1.5",
"description": "Gracefully shutdown your modular NodeJS application",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=6"
},
"scripts": {
"test": "node -r esm test.js && ts-node ./test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZitRos/node-graceful-shutdown.git"
},
"author": {
"name": "ZitRo",
"url": "https://nikita.tk"
},
"keywords": [
"graceful",
"shutdown",
"sigint",
"sigterm",
"sigquit",
"exit",
"properly",
"handle",
"exit",
"close",
"connection",
"process"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ZitRos/node-graceful-shutdown/issues"
},
"homepage": "https://github.com/ZitRos/node-graceful-shutdown#readme",
"devDependencies": {
"ava": "^3.12.1",
"esm": "^3.2.25",
"ts-node": "^10.9.1"
}
}