forked from Klaveness-Digital/cypress-cucumber-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "cypress-cucumber-preprocessor",
"version": "0.3.0",
"description": "Run gherkin-syntaxed specs with cypress.io",
"main": "index.js",
"scripts": {
"test": "eslint . && jest && cypress run",
"fixStyle": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+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": "^1.0.2",
"chai": "^4.1.2",
"cucumber": "^4.0.0",
"cucumber-expressions": "^5.0.7",
"debug": "^3.0.1",
"gherkin": "^5.0.0",
"glob": "^7.1.2",
"mocha-steps": "^1.1.0",
"through": "^2.3.8"
},
"devDependencies": {
"cypress": "^2.0.1",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.2",
"prettier": "^1.10.2"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/setupTestFramework.js"
}
}