-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "investigate-ui-cypress-assessment",
"version": "1.0.0",
"description": "Investigate - QA assessment of Cypress skills testing UIs",
"author": "GBG Investigate",
"license": "UNLICENCED",
"private": true,
"scripts": {
"test": "cypress run --e2e",
"open": "cypress open --e2e"
},
"keywords": [
"Investigate",
"QA",
"Assessment",
"Cypress",
"UI",
"Testing"
],
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/node": "7.16.5",
"@babel/preset-env": "^7.0.0",
"@babel/types": "^7.14.1",
"@cypress/browserify-preprocessor": "^3.0.1",
"@cypress/webpack-preprocessor": "^5.7.0",
"@testing-library/cypress": "^7.0.6",
"@types/cypress-cucumber-preprocessor": "^4.0.0",
"babel-loader": "^8.0.2",
"cypress": "10.7.0",
"cypress-cucumber-preprocessor": "^4.1.2",
"eslint-plugin-cypress": "^2.11.3",
"typescript": "^4.2.4",
"webpack": "^4.18.1"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"cucumberJson": {
"generate": true,
"outputFolder": "cypress/cucumber-json",
"filePrefix": "",
"fileSuffix": ".cucumber"
}
},
"dependencies": {}
}