-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "cypress_cucumber",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "npx eslint cypress/integration/*/*.js cypress/integration/*.feature cypress/*/*.js --fix",
"pretest": "npm run lint",
"test": "npx cypress run --browser chrome",
"open": "npx cypress open"
},
"eslintConfig": {
"extends": [
"plugin:cypress/recommended"
]
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnmorrisQADeveloper/cypress_cucumber.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/johnmorrisQADeveloper/cypress_cucumber/issues"
},
"homepage": "https://github.com/johnmorrisQADeveloper/cypress_cucumber#readme",
"dependencies": {
"danger": "^10.5.0"
},
"devDependencies": {
"cypress": "^4.12.1",
"cypress-cucumber-preprocessor": "^2.5.5",
"cypress-image-snapshot": "^3.1.1",
"cypress-slack-reporter": "^0.10.0",
"eslint": "^7.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-cucumber": "^1.4.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2"
}
}