UNPKG

1.13 kBJSONView Raw
1{
2 "name": "async-exit-hook",
3 "version": "1.0.2",
4 "description": "Run some code when the process exits (supports async hooks andpm2 clustering)",
5 "license": "MIT",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/tapppi/async-exit-hook.git"
9 },
10 "author": {
11 "name": "Tapani Moilanen",
12 "email": "moilanen.tapani@gmail.com",
13 "url": "https://github.com/tapppi"
14 },
15 "contributors": [
16 {
17 "name": "Sindre Sorhus",
18 "email": "sindresorhus@gmail.com",
19 "url": "http://sindresorhus.com"
20 }
21 ],
22 "engines": {
23 "node": ">=0.12.0"
24 },
25 "scripts": {
26 "test": "nyc ava"
27 },
28 "files": [
29 "index.js"
30 ],
31 "keywords": [
32 "exit",
33 "quit",
34 "process",
35 "hook",
36 "graceful",
37 "handler",
38 "shutdown",
39 "sigterm",
40 "sigint",
41 "sighup",
42 "pm2",
43 "cluster",
44 "child",
45 "reload",
46 "async",
47 "terminate",
48 "kill",
49 "stop",
50 "event"
51 ],
52 "devDependencies": {
53 "ava": "0.13.0",
54 "coveralls": "^2.11.8",
55 "nyc": "^6.0.0"
56 },
57 "ava": {
58 "files": [
59 "test/*.js",
60 "!tests/cases/*"
61 ]
62 }
63}