-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 753 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 753 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
26
27
{
"name": "api-automation-test",
"version": "1.0.0",
"description": "API automation test project example using CucumberJS",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "cucumber-js ./tests/features --parallel 3 --require ./tests/steps-definition/ -f html:./reports/test-report.html --format ./src/helper/reporter.js",
"report": "allure serve ./reports/allure-results"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@cucumber/cucumber": "^9.3.0",
"allure-cucumberjs": "^2.6.0",
"chai": "^4.3.7",
"chai-json-schema": "^1.5.1",
"dotenv": "^16.3.1",
"supertest": "^6.3.3"
},
"devDependencies": {
"allure-commandline": "^2.24.0"
}
}