-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
{
"name": "nodejs-rest-http-crud",
"version": "4.0.0",
"description": "",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "nyc mocha",
"test:integration": "mocha test/integration/*.js",
"test:integration:undeploy": "nodeshift undeploy",
"release": "standard-version -a",
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-14:latest",
"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/"
}
},
"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.1.1",
"eslint": "^7.24.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"js-yaml": "^4.0.0",
"mocha": "^8.4.0",
"nodeshift": "~8.1.1",
"nyc": "~15.1.0",
"proxyquire": "~2.1.3",
"rhoaster": "^0.4.1",
"standard-version": "^9.2.0",
"supertest": "~6.1.3"
},
"dependencies": {
"body-parser": "~1.19.0",
"debug": "^4.3.1",
"express": "~4.17.1",
"license-reporter": "~1.3.0",
"pg": "^8.6.0",
"pino": "^6.11.3",
"pino-debug": "^2.0.0",
"pino-pretty": "^5.1.0"
}
}