forked from mrharry/cypress-framework-pageObject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 758 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
30
31
{
"name": "cypress-framework",
"version": "1.0.0",
"description": "Cypress using Cucumber with Page Objects",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cyrun": "node_modules/.bin/cypress run --browser chrome"
},
"keywords": [
"Cypress",
"Cucumber",
"BDD"
],
"author": "Stuart Robertson",
"license": "ISC",
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"cucumberJson": {
"generate": true,
"outputFolder": "cypress/cucumber-json",
"filePrefix": "",
"fileSuffix": ".cucumber"
}
},
"devDependencies": {
"cosmiconfig": "^5.2.1",
"cypress": "^3.6.0",
"cypress-cucumber-preprocessor": "^1.16.2"
}
}