forked from JuanAndresTrejo/academy2025-cypress-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.68 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.68 KB
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
37
38
39
40
41
{
"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",
"cy:open": "cypress open",
"cy:spec": "cypress run --spec **/*.spec.js",
"cy:reporter": "cypress run --reporter reporters/lippia-reporter/lippia-reporter.js",
"cy:local": "cypress run",
"cy:run": "cypress run --record --key CYPRESS_RECORD_KEY"
},
"keywords": [
"cypress"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JuanAndresTrejo/academy2024-cypress-basic.git"
},
"author": "cucumber",
"license": "ISC",
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^20.0.6",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"@shelex/cypress-allure-plugin": "^2.40.2",
"cypress": "^13.15.0",
"esbuild": "^0.16.4",
"multiple-cucumber-html-reporter": "3.0.1"
},
"bugs": {
"url": "https://github.com/JuanAndresTrejo/academy2024-cypress-basic/issues"
},
"homepage": "https://github.com/JuanAndresTrejo/academy2024-cypress-basic#readme"
}