forked from nodeshift-starters/nodejs-rest-http-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.14 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "nodejs-rest-http-crud",
"version": "2.1.0",
"description": "",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"test": "tape test/*.js | tap-spec",
"test:integration": "tape test/integration/*.js | tap-spec",
"test:integration:undeploy": "nodeshift --strictSSL=false undeploy",
"lint": "xo",
"prepare": "echo 'To confirm CVE compliance, run \"npm run security-check\"' ",
"security-check": "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 -a",
"openshift": "nodeshift --strictSSL=false --nodeVersion=10.x",
"postinstall": "license-reporter report -s && license-reporter save -s --xml licenses.xml",
"start": "node ."
},
"main": "./bin/www",
"standard-version": {
"scripts": {
"postbump": "npm run postinstall && node release.js",
"precommit": "git add .openshiftio/application.yaml licenses/"
}
},
"xo": {
"space": 2,
"rules": {
"space-before-function-paren": [
"error",
"always"
]
}
},
"files": [
"package.json",
"app.js",
"public",
"bin",
"lib",
"LICENSE",
"licenses"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nodeshift-starters/nodejs-rest-http-crud.git"
},
"bugs": {
"url": "https://github.com/nodeshift-starters/nodejs-rest-http-crud/issues"
},
"homepage": "https://github.com/nodeshift-starters/nodejs-rest-http-crud#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"js-yaml": "^3.10.0",
"nodeshift": "~2.0.0",
"nsp": "~3.2.1",
"nyc": "~12.0.2",
"proxyquire": "^2.0.0",
"rhoaster": "~0.2.0",
"standard-version": "^4.3.0",
"supertest": "^3.0.0",
"szero": "^1.0.0",
"tap-spec": "~5.0.0",
"tape": "~4.9.0",
"xo": "~0.22.0"
},
"dependencies": {
"body-parser": "~1.18.0",
"debug": "^4.0.1",
"express": "4.16.0",
"kube-probe": "^0.3.1",
"license-reporter": "^1.2.0",
"pg": "^7.1.2"
}
}