-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.39 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
{
"name": "reference-nodejs-npm",
"version": "1.0.0",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"test": "npm run coverage",
"test:integration": "tape test/integration/*.js | tap-spec",
"test:integration:undeploy": "nodeshift undeploy",
"test:uat": "pwd && cypress run --reporter junit --reporter-options mochaFile=./uat-results/uat-results.xml,toConsole=true,jenkinsMode=true",
"test:uat:cicd": "/usr/local/bin/cypress run --reporter junit --reporter-options mochaFile=./uat-results/uat-results.xml,toConsole=true,jenkinsMode=true",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"coverage": "nyc tape test/*.js && nyc report --reporter=lcov",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"ci": "npm run lint && npm run coveralls",
"release": "standard-version -a",
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-14",
"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/"
}
},
"repository": {
"type": "git",
"url": "git://github.com/nodeshift-starters/nodejs-rest-http-redhat.git"
},
"files": [
"package.json",
"app.js",
"public",
"bin",
"LICENSE",
"licenses"
],
"bugs": {
"url": "https://github.com/nodeshift-starters/nodejs-rest-http-redhat/issues"
},
"homepage": "https://github.com/nodeshift-starters/nodejs-rest-http-redhat",
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.32.0",
"cypress": "^9.1.0",
"eslint": "^7.13.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"js-yaml": "^3.13.1",
"mocha-junit-reporter": "^2.0.2",
"nodeshift": "~6.2.0",
"nyc": "^14.1.1",
"rhoaster": "^0.4.1",
"standard-version": "^8.0.1",
"supertest": "~4.0.2",
"tap-spec": "~5.0.0",
"tape": "~5.0.1"
},
"dependencies": {
"body-parser": "~1.19.0",
"debug": "^4.2.0",
"express": "~4.17.1",
"license-reporter": "~1.3.0"
}
}