-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (58 loc) · 1.74 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
{
"name":"booster-health-check-nodejs",
"version":"1.0.0",
"author":"Red Hat, Inc.",
"license":"Apache-2.0",
"scripts":{
"test":"tape test/*.js | tap-spec",
"lint":"eslint test/*.js app.js bin/*",
"prepare":"nsp check",
"coverage":"nyc npm test",
"coveralls":"nyc npm test && nyc report --reporter=text-lcov | coveralls",
"ci":"npm run lint && npm run coveralls",
"dependencyCheck":"szero . --ci",
"release":"standard-version",
"openshift":"nodeshift --osc.strictSSL=false",
"start":"PORT=8080 node ./bin/www"
},
"files":[
"package.json",
"app.js",
"public",
"bin",
"LICENSE"
],
"repository":{
"type":"git",
"url":"git://github.com/bucharest-gold/nodejs-health-check.git"
},
"bugs":{
"url":"https://github.com/bucharest-gold/nodejs-health-check/issues"
},
"homepage":"https://github.com/bucharest-gold/nodejs-health-check",
"devDependencies":{
"coveralls":"^3.0.0",
"eslint":"~4.7.0",
"eslint-config-semistandard":"~11.0.0",
"eslint-config-standard":"~10.2.1",
"eslint-plugin-import":"^2.7.0",
"eslint-plugin-node":"^5.1.1",
"eslint-plugin-promise":"~3.5.0",
"eslint-plugin-react":"~7.4.0",
"eslint-plugin-standard":"~3.0.1",
"nodeshift":"^0.8.0",
"nsp":"~2.8.0",
"nyc":"~11.2.1",
"standard-version":"^4.2.0",
"supertest":"^3.0.0",
"szero":"^1.0.0",
"tap-spec":"~4.1.1",
"tape":"~4.8.0"
},
"dependencies":{
"body-parser":"^1.18.2",
"debug":"^3.1.0",
"express":"^4.16.0",
"kube-probe":"^0.1.0"
}
}