forked from Klaveness-Digital/cypress-cucumber-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.45 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "cypress-cucumber-preprocessor",
"version": "0.0.0-development",
"description": "Run gherkin-syntaxed specs with cypress.io",
"main": "lib/index.js",
"scripts": {
"test": "eslint . && jest && npm run test:all",
"test:all": "cypress run --spec \"**/*.features\"",
"test:each": "cypress run --spec \"**/*.feature\"",
"test:debug": "jest && DEBUG=cypress:* cypress open\n",
"fixStyle": "eslint . --fix",
"semantic-release": "semantic-release"
},
"bin": {
"cypress-tags": "cypress-tags.js"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged && jest"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/TheBrainFamily/cypress-cucumber-preprocessor.git"
},
"keywords": [
"cucumber",
"gherkin",
"cypress",
"testing"
],
"author": "Lukasz Gandecki",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheBrainFamily/cypress-cucumber-preprocessor/issues"
},
"homepage": "https://github.com/TheBrainFamily/cypress-cucumber-preprocessor#readme",
"dependencies": {
"@cypress/browserify-preprocessor": "^3.0.1",
"chai": "^4.2.0",
"chokidar": "2.1.8",
"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",
"js-string-escape": "^1.0.1",
"minimist": "^1.2.5",
"through": "^2.3.8"
},
"devDependencies": {
"commitizen": "^4.2.1",
"cypress": "^5.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "2.1.2",
"semantic-release": "^17.1.1"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/lib/testHelpers/setupTestFramework.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"coveragePathIgnorePatterns": [
"node_modules",
"<rootDir>/lib/*.test.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}