-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.44 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
{
"name": "server-terminate",
"version": "1.5.0",
"description": "Allow terminating a server in an orderly fashion",
"license": "MIT",
"author": "Jose Antonio Rodríguez <[email protected]>",
"contributors": [
"Javier Martínez Álvarez <[email protected]>",
"Javier Mendiara Cañardo <[email protected]>"
],
"main": "index",
"types": "index.d.ts",
"scripts": {
"lint": "eslint index.js test/*.spec.js && tslint index.d.ts test/*.ts",
"test": "tartare test/*.spec.js && tsc && node test/server-terminate.typings.js",
"changelog": "conventional-changelog --preset jshint --infile CHANGELOG.md --same-file",
"changelog-gh-release": "conventional-changelog --preset jshint --config .changelog.js",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/Telefonica/node-server-terminate.git"
},
"bugs": "https://github.com/Telefonica/node-server-terminate/issues",
"engines": {
"node": ">=0.12"
},
"keywords": [
"server",
"shutdown",
"terminate",
"close"
],
"devDependencies": {
"@types/node": "^9.3.0",
"chai": "^4.1.2",
"conventional-changelog-cli": "^1.3.5",
"eslint": "^4.16.0",
"eslint-config-google": "^0.6.0",
"release-it": "^6.0.0",
"tartare": "^1.2.1",
"tslint": "^5.9.1",
"tslint-config-typings": "^0.3.1",
"typescript": "^2.6.2"
}
}