-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1014 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
{
"name": "tidy-exit",
"version": "0.3.0",
"description": "Allow node apps to gracefully exit (allow exisitng requests to finish before shutting down)",
"keywords": [
"graceful exit",
"tidy exit",
"shutdown"
],
"author": "Tarun Kothuri <[email protected]> (https://github.com/tarun/tidy-exit)",
"repository": {
"type": "git",
"url": "https://github.com/tarun/tidy-exit.git"
},
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "index.js",
"scripts": {
"clean": "rm -rf ./build ./docs ./coverage",
"cover": "istanbul cover _mocha -- test/",
"docs": "jsdoc -c conf/jsdoc.json",
"lint": "jshint --exclude 'node_modules/*' *.js */*.js",
"test": "npm run lint && mocha"
},
"devDependencies": {
"chai": "^2.0.0",
"express": "^4.11.2",
"istanbul": "^0.3.5",
"jsdoc": "^3.3.0-beta1",
"jshint": "2.5.x",
"mocha": "^2.1.0",
"sinon": "^1.14.1",
"supertest": "^1.0.1"
}
}