forked from nodeshift-starters/nodejs-rest-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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": "nodejs-rest-http",
"version": "1.1.1",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"test": "ava test/*.js",
"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 --strictSSL=false --nodeVersion=8.x",
"postinstall": "license-reporter report && license-reporter save --xml licenses.xml",
"start": "PORT=8080 node ./bin/www"
},
"repository": {
"type": "git",
"url": "git://github.com/bucharest-gold/nodejs-rest-http.git"
},
"files": [
"package.json",
"app.js",
"public",
"bin",
"LICENSE",
"licenses"
],
"bugs": {
"url": "https://github.com/bucharest-gold/nodejs-rest-http/issues"
},
"homepage": "https://github.com/bucharest-gold/nodejs-rest-http",
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"eslint-config-semistandard": "~12.0.0",
"eslint-config-standard": "~11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "~3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "~3.0.1",
"nodeshift": "^1.3.0",
"nsp": "~3.1.0",
"nyc": "~11.4.1",
"openshift-test-assistant": "^0.3.1",
"standard-version": "^4.3.0",
"supertest": "^3.0.0",
"szero": "^1.0.0",
"tap-spec": "~4.1.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"debug": "^3.1.0",
"express": "^4.16.2",
"license-reporter": "^1.1.3"
}
}