forked from CloudNativeJS/cloud-health-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@cloudnative/health-connect",
"version": "2.1.0",
"description": "Connect middleware for Cloud Health",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "tsc && nyc --reporter=html mocha --timeout 30000 \"./test/*/*.test.js\"",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"mocha": "node bin/run-mocha --timeout 30000 \"./test/*/*.js\""
},
"keywords": [
"health",
"cloud",
"kubernetes",
"healthcheck",
"liveness",
"connect",
"LTS"
],
"author": "Chris Bailey",
"license": "Apache-2.0",
"repository": "CloudNativeJS/cloud-health-connect",
"homepage": "http://CloudNativeJS.io/",
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/connect": "^3.4.32",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.1",
"@types/sinon": "9.0.9",
"chai": "^4.1.2",
"connect": "^3.4.32",
"coveralls": "^3.0.2",
"mocha": "^7.0.1",
"nyc": "15.1.0",
"sinon": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@cloudnative/health": "^2.1.1"
}
}