-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
22 lines (22 loc) · 1.21 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
{
"name": "playwright-cucumber-e2e-boilerplate",
"version": "8.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/cucumber-js --require cucumber.js --require step-definitions/**/*.js --require features/**/*.js --format html:./reports/cucumber_report.html --format summary --format @cucumber/pretty-formatter --no-strict --publish-quiet",
"demo": "./node_modules/.bin/cucumber-js --require cucumber.js --tags @demo --require step-definitions/**/*.js --require features/**/*.js --format html:./reports/cucumber_report.html --format summary --format @cucumber/pretty-formatter --no-strict --publish-quiet",
"delete-emails": "./node_modules/.bin/cucumber-js --require cucumber.js --tags @delete --require step-definitions/**/*.js --require features/**/*.js --format html:./reports/cucumber_report.html --format summary --format @cucumber/pretty-formatter --no-strict --publish-quiet"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^7.0.0",
"@cucumber/pretty-formatter": "^1.0.0-alpha.0",
"chai": "^4.2.0",
"cucumber-html-reporter": "^5.3.0",
"playwright": "^1.8.0",
"@playwright/test": "^1.29.2"
}
}