-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "catch-exit",
"version": "1.2.3",
"description": "Catch Node.js exit conditions, including errors and unhandled rejections.",
"keywords": [
"catch",
"exit",
"process",
"kill",
"error",
"death",
"cleanup",
"clean up",
"callback",
"nodejs",
"node js",
"node",
"catch exit",
"catch-exit",
"unhandledRejection",
"uncaughtException",
"SIGINT",
"SIGHUP",
"SIGTERM",
"SIGQUIT"
],
"homepage": "https://github.com/electrovir/catch-exit",
"bugs": {
"url": "https://github.com/electrovir/catch-exit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/electrovir/catch-exit"
},
"license": "MIT",
"author": {
"name": "electrovir",
"url": "https://github.com/electrovir"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"format": "virmator format write",
"prepublishOnly": "npm run test:full",
"spellcheck": "virmator spellcheck --extendable-config",
"test": "virmator compile && virmator test --runInBand --no-write-config",
"test:full": "npm test && npm run spellcheck && virmator format check"
},
"dependencies": {
"human-signals": "2.1.0"
},
"devDependencies": {
"@types/node": "17.0.23",
"typescript": "4.6.3",
"virmator": "2.0.3"
}
}