forked from cowboy/node-exit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 839 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 839 Bytes
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
{
"name": "exit-x",
"description": "A replacement for process.exit that ensures stdio are fully drained before exiting.",
"version": "0.2.2",
"homepage": "https://github.com/gruntjs/node-exit-x",
"author": "Grunt Development Team (https://gruntjs.com/development-team)",
"repository": {
"type": "git",
"url": "git://github.com/gruntjs/node-exit-x.git"
},
"bugs": {
"url": "https://github.com/gruntjs/node-exit-x/issues"
},
"license": "MIT",
"main": "lib/exit.js",
"types": "lib/exit.d.ts",
"engines": {
"node": ">= 10"
},
"scripts": {
"test": "jshint . && qunit test/exit_test.js"
},
"devDependencies": {
"jshint": "~2.13.6",
"qunit": "~2.25.0"
},
"keywords": [
"exit",
"process",
"stdio",
"stdout",
"stderr",
"drain",
"flush",
"3584"
]
}