forked from JoanEsquivel/cypress-cucumber-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.12 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
{
"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": {
"cypress:runner": "cypress open --e2e --browser chrome",
"cypress:execution": "cypress run --spec cypress/e2e/features/*",
"cypress:execution-tags": "cypress run --env tags=@mobile",
"cypress:execution-allure": "cypress run --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.34.0",
"cypress": "^12.0.2",
"esbuild": "^0.16.4",
"multiple-cucumber-html-reporter": "^3.0.1"
}
}