-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 743 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
{
"name": "http-shutdown",
"version": "1.2.2",
"description": "Gracefully shutdown a running HTTP server.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha",
"test-travis": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --reporter dot"
},
"keywords": [
"http",
"https",
"graceful",
"force",
"shutdown"
],
"author": "Dillon Buchanan",
"repository": "thedillonb/http-shutdown",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.12.6",
"chai": "^3.4.1",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"request": "^2.67.0"
},
"engines": {
"iojs": ">= 1.0.0",
"node": ">= 0.12.0"
}
}