-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 814 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 814 Bytes
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
{
"name": "cicd-v1",
"version": "1.0.0",
"description": "Sample Proxy for CI/CD Reference",
"author": "danistrebel",
"scripts": {
"test": "npm run unit-test && npm run integration-test",
"unit-test": "nyc --reporter=html mocha --recursive --timeout 5000 \"./test/unit/*.js\"",
"integration-test": "cucumber-js --publish-quiet ./test/integration",
"lint": "npm run eslint && npm run apigeelint",
"eslint": "eslint --format html .",
"apigeelint": "apigeelint -s ./apiproxy -f html.js -e PO025,PO013"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.0",
"apickli": "^3.0.1",
"apigeelint": "^2.13.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"sinon": "^9.0.2"
}
}