-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 1.39 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
32
33
34
{
"name": "cyframework",
"version": "1.0.0",
"description": "A test automation framework template using Cypress + BDD + POM + Reporter + Dashboard",
"scripts": {
"cy:dev:chrome": "cypress run --config baseUrl=http://devtodo.monfared.io/ --browser chrome --record",
"cy:stag:chrome": "cypress run --config baseUrl=http://stagtodo.monfared.io/ --browser chrome --record",
"cy:dev:firefox": "cypress run --config baseUrl=http://devtodo.monfared.io/ --browser firefox --record",
"cy:stag:firefox": "cypress run --config baseUrl=http://stagtodo.monfared.io/ --browser firefox --record",
"cy:headed": "cypress run --config baseUrl=http://devtodo.monfared.io/ --headed",
"cy:test": "cypress run --config baseUrl=http://devtodo.monfared.io/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmonfared/CyFramework.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmonfared/CyFramework/issues"
},
"homepage": "https://github.com/mmonfared/CyFramework#readme",
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^16.0.3",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"cypress": "^12.7.0",
"cypress-mochawesome-reporter": "^3.3.0"
},
"cypress-cucumber-preprocessor": {
"step_definitions": "cypress/support/step_definitions/",
"nonGlobalStepDefinitions": false
}
}