-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (24 loc) · 784 Bytes
/
package.json
File metadata and controls
25 lines (24 loc) · 784 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": "sample",
"version": "1.0.0",
"description": "Application Integration CICD Reference",
"author": "ssvaidyanathan",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"integration-test": "npm install --silent; cucumber-js ./tests/integration",
"dev-integration-test": "npm install --silent;./local_test.sh; cucumber-js ./tests_local/integration; rm -rf tests_local node_modules"
},
"dependencies": {
"@cucumber/cucumber": "^9",
"@cucumber/pretty-formatter": "^1",
"cucumber-html-reporter": "latest",
"@xmldom/xmldom": "0.x",
"apickli": "latest"
}
}