-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "cucumber-supertest-api",
"version": "1.0.0",
"description": "API testing boilerplate with Cucumber framework handling SuperTest API library",
"main": "index.js",
"scripts": {
"test": "cucumber-js --config config/cucumber.js",
"test_all": "cucumber-js --config config/cucumber.js --tags \"@smoke and @regression\"",
"smoke": "cucumber-js --config config/cucumber.js -p smoke",
"regression": "cucumber-js --config config/cucumber.js -p regression",
"report": "node index.js",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/javicoin/cucumber-supertest-api.git"
},
"author": "javicoin",
"license": "ISC",
"bugs": {
"url": "https://github.com/javicoin/cucumber-supertest-api/issues"
},
"homepage": "https://github.com/javicoin/cucumber-supertest-api#readme",
"devDependencies": {
"cucumber-html-reporter": "^5.5.0",
"eslint": "^8.23.0",
"eslint-config-xo": "^0.42.0",
"supertest": "^6.2.4"
},
"dependencies": {
"@cucumber/cucumber": "^8.5.2",
"ajv": "^8.11.0",
"cucumber-console-formatter": "^1.0.0",
"expect": "26.6.2"
}
}