This repository has been archived by the owner on Jul 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.66 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
61
{
"name": "kube-probe",
"version": "1.0.3",
"description": "connect.js middleware that sets up generic liveness and readiness probes for Openshift/Kubernetes",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"test": "tape test/*.js | tap-spec",
"lint": "eslint test/*-test.js index.js",
"coverage": "nyc npm test",
"coverage:html": "nyc npm test && nyc report --reporter=html",
"coveralls": "nyc npm test && nyc report && if [ $COVERALLS_REPO_TOKEN'' != '' ] ; then nyc report --reporter=text-lcov | coveralls; fi",
"ci": "npm run lint && npm run coveralls",
"release": "standard-version"
},
"files": [
"index.js"
],
"engines": {
"node": "^16 || ^14 || ^12"
},
"repository": {
"type": "git",
"url": "git://github.com/nodeshift/kube-probe.git"
},
"bugs": {
"url": "https://github.com/nodeshift/kube-probe/issues"
},
"keywords": [
"connect",
"connect.js",
"express",
"express.js",
"middleware",
"kubernetes",
"openshift",
"liveness",
"readiness"
],
"homepage": "https://github.com/nodeshift/kube-probe",
"devDependencies": {
"connect": "~3.7.0",
"coveralls": "^3.1.0",
"eslint": "~7.20.0",
"eslint-config-semistandard": "~15.0.1",
"eslint-config-standard": "~14.1.1",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~4.3.1",
"eslint-plugin-standard": "~4.1.0",
"nyc": "~15.1.0",
"standard-version": "^9.1.1",
"supertest": "^4.0.0",
"tap-spec": "~5.0.0",
"tape": "~5.2.0"
},
"dependencies": {
"overload-protection": "~1.2.0"
},
"support": true
}