-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.38 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.38 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
{
"name": "cybddframework",
"version": "1.0.0",
"description": "A test automation framework using cypress and cucumber",
"main": "cypress.config.js",
"scripts": {
"cy:headless": "cypress run --config baseUrl=${baseUrl} --headless",
"cy:chrome:headless": "cypress run --config baseUrl=${baseUrl} --browser chrome --headless --record",
"cy:firefox:headless": "cypress run --config baseUrl=${baseUrl} --browser firefox --headless --record",
"cy:chrome": "cypress run --config baseUrl=${baseUrl} --browser chrome",
"cy:firefox": "cypress run --config baseUrl=${baseUrl} --browser firefox",
"cy:headed": "cypress run --config baseUrl=${baseUrl} --headed",
"cy:test": "cypress run --config baseUrl=${baseUrl}"
},
"repository": {
"type": "git",
"url": "https://github.com/rsrohit/CyBDDFramework.git"
},
"bugs": {
"url": "https://github.com/rsrohit/CyBDDFramework/issues"
},
"homepage": "https://github.com/rsrohit/CyBDDFramework#readme",
"keywords": [],
"author": "Rohit Shinde",
"license": "ISC",
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^21.0.3",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.4",
"cypress": "^13.17.0",
"cypress-mochawesome-reporter": "^3.8.2"
},
"cypress-cucumber-preprocessor": {
"step_definitions": "cypress/support/step_definitions/",
"nonGlobalStepDefinitions": false
}
}