-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 870 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
28
29
30
31
{
"name": "cypress-cucumber",
"scripts": {
"cy:open": "npx cypress open",
"cypress:run": "npx cypress run",
"cypress:config": "npx cypress run --config-file config/config.js",
"cypress:report": "node cucumber-html-report.js"
},
"devDependencies": {
"@cucumber/cucumber": "^8.5.1",
"@cypress/browserify-preprocessor": "^3.0.2",
"cucumber-html-reporter": "^5.5.0",
"cypress": "^10.4.0",
"cypress-cucumber-preprocessor": "^4.3.1",
"multiple-cucumber-html-reporter": "^1.21.6"
},
"cypress-cucumber-preprocessor": {
"json": {
"enabled": true,
"output": "jsonlogs/log.json",
"formater": "cucumber-json-formatter.exe"
},
"messages": {
"enabled": true,
"output": "jsonlogs/messages.ndjson"
}
},
"dependencies": {
"@badeball/cypress-cucumber-preprocessor": "^12.0.1"
}
}