forked from nodeshift-starters/nodejs-rest-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.41 KB
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
{
"name": "nodejs-rest-http",
"version": "4.0.0",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "nyc --reporter=lcov mocha",
"prepare": "echo 'To confirm CVE compliance, run \"npm audit\"' ",
"release": "standard-version -a",
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-14",
"start": "node ."
},
"main": "./bin/www",
"standard-version": {
"scripts": {
"postbump": "npm run postinstall && node release.js",
"precommit": "git add .openshiftio/application.yaml"
}
},
"repository": {
"type": "git",
"url": "git://github.com/nodeshift-starters/nodejs-rest-http.git"
},
"files": [
"package.json",
"app.js",
"public",
"bin",
"LICENSE"
],
"bugs": {
"url": "https://github.com/nodeshift-starters/nodejs-rest-http/issues"
},
"homepage": "https://github.com/nodeshift-starters/nodejs-rest-http",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-semistandard": "^16.0.0",
"js-yaml": "^4.1.0",
"mocha": "^9.1.3",
"nodeshift": "~8.6.0",
"nyc": "~15.1.0",
"standard-version": "^9.3.2",
"supertest": "~6.1.6"
},
"dependencies": {
"body-parser": "~1.19.0",
"debug": "^4.3.3",
"express": "~4.17.1",
"pino": "^7.5.1",
"pino-debug": "^2.0.0",
"pino-pretty": "^7.2.0"
}
}