-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 954 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
{
"name": "cypress-cucumber",
"version": "1.0.0",
"description": "Cypress bootstrap with TS and Cucumber",
"scripts": {
"cy:run": "cypress run --reporter junit",
"cy:run:headed": "cypress run --reporter junit --headed",
"cy:chrome:headed": "cypress run --reporter junit --browser chrome --headed",
"cy:chrome": "cypress run --reporter junit --browser chrome --headless",
"cy:open": "cypress open",
"cy:run:smoke": "cypress run --env tags=@smoke --headed"
},
"dependencies": {
"ts-loader": "9.3.1",
"typescript": "4.7.4",
"webpack": "5.74.0"
},
"devDependencies" : {
"cypress": "10.3.1",
"@badeball/cypress-cucumber-preprocessor": "12.0.0",
"@cypress/webpack-preprocessor": "5.12.0",
"cypress-cucumber-tagging": "^1.0.3"
},
"author": "Wolox Training",
"license": "MIT",
"cypress-cucumber-preprocessor": {
"stepDefinitions": "cypress/test/step_definitions/**/*.{js,ts}"
}
}