forked from dgerike/cypress-cucumber-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·69 lines (69 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cypress-cucumber-preprocessor-single-steps",
"version": "1.9.9",
"description": "Run gherkin-syntaxed specs with cypress.io",
"main": "lib/index.js",
"scripts": {
"test": "eslint . && jest && cypress run",
"fixStyle": "eslint . --fix",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && jest"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/dgerike/cypress-cucumber-preprocessor.git"
},
"keywords": [
"cucumber",
"gherkin",
"cypress",
"testing"
],
"author": "Lukasz Gandecki",
"license": "MIT",
"bugs": {
"url": "https://github.com/dgerike/cypress-cucumber-preprocessor/issues"
},
"homepage": "https://github.com/dgerike/cypress-cucumber-preprocessor#readme",
"dependencies": {
"@cypress/browserify-preprocessor": "^1.1.2",
"axios": "^0.18.0",
"chai": "^4.1.2",
"chokidar": "^2.0.4",
"cosmiconfig": "^4.0.0",
"cucumber": "^4.2.1",
"cucumber-expressions": "^6.0.1",
"cucumber-tag-expressions": "^1.1.1",
"debug": "^3.0.1",
"gherkin": "^5.1.0",
"glob": "^7.1.2",
"through": "^2.3.8"
},
"devDependencies": {
"cypress": "3.2.0",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^23.6.0",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"prettier": "^1.13.5",
"semantic-release": "^15.12.3"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/lib/setupTestFramework.js"
}
}