-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.26 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
{
"name": "cypress-cucumber-boilerplate",
"version": "2.2.0",
"description": "This project is meant to be a kind of template to start working with Cucumber and Cypress just cloning the project.",
"main": "index.js",
"scripts": {
"test": "cypress open --e2e --browser chrome",
"cypress:execution": "cypress run --spec cypress/e2e/features/*",
"cypress:execution-tags": "cypress run --env tags=@mobile",
"allure:execution-headless": "cypress run --env allure=true",
"allure:execution-headed": "cypress open --e2e --browser chrome --env allure=true",
"allure:clear": "rm -r allure-results/ allure-report cypress/screenshots || true",
"allure:report": "allure generate allure-results --clean -o allure-report",
"allure:history": "mv -f allure-report/history allure-results/history && rm -r allure-report || true"
},
"keywords": [
"cypress"
],
"author": "cucumber",
"license": "ISC",
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^15.0.0",
"@bahmutov/cypress-esbuild-preprocessor": "^2.1.5",
"@shelex/cypress-allure-plugin": "^2.39.1",
"cypress": "^12.16.0",
"cypress-file-upload": "^5.0.8",
"cypress-xpath": "^2.0.1",
"esbuild": "^0.16.4",
"multiple-cucumber-html-reporter": "^3.0.1"
}
}