forked from gajus/http-terminator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.23 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
58
59
60
{
"ava": {
"files": [
"test/src/**/*"
]
},
"description": "Zero dependencies, gracefully terminates HTTP(S) server.",
"devDependencies": {
"agentkeepalive": "^4.2.1",
"ava": "^4.0.1",
"eslint": "^8.9.0",
"got": "^11.8.3",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"pem": "^1.14.6",
"prettier": "^2.5.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2021
},
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended"
},
"engines": {
"node": ">=12"
},
"files": [
"src"
],
"keywords": [
"docker",
"kubernetes",
"prometheus",
"http",
"https",
"keep-alive",
"close",
"terminate"
],
"license": "BSD-3-Clause",
"source": "src/index.js",
"main": "src/index.js",
"name": "lil-http-terminator",
"repository": {
"type": "git",
"url": "https://github.com/flash-oss/lil-http-terminator"
},
"scripts": {
"ci": "npm i && npm t && npm run lint",
"test": "NODE_ENV=test mocha --recursive --exit",
"cov": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha --recursive --exit",
"lint": "eslint ./src ./test"
},
"version": "1.2.3"
}