-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
27 lines (27 loc) · 930 Bytes
/
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
{
"name": "api-automation-report",
"version": "1.0.0",
"description": "API Automation with TypeScript and Cucumber",
"main": "index.js",
"scripts": {
"pretest": "rimraf ./reports/*",
"runAll": "cucumber-js ./tests/features/ --require ./tests/stepDefinitions/*.ts --format json:./reports/report.json --require-module ts-node/register",
"report": "node ./index.js",
"test": "npm-run-all runAll report --continue-on-error",
"singleFile": "cucumber-js --require ./tests/stepDefinitions/*.ts --format json:./reports/report.json --require-module ts-node/register"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^7.0.0",
"@types/chai": "^4.2.15",
"chai": "^4.3.3",
"chai-http": "^4.3.0",
"cucumber-html-reporter": "^5.3.0",
"i": "^0.3.7",
"npm": "^7.6.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1"
}
}