-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "cucumber-cypress-starter",
"version": "1.0.0",
"description": "Accelerator to quickly bootstrap a cucumber based cypress project",
"author": "Ankur Kakroo",
"license": "MIT",
"keywords": [
"e2e",
"cypress",
"cucumber"
],
"scripts": {
"test:report": "rm -rf out && node scripts/cy.js --cucumber-report",
"test:cucumber-report": "rm -rf out && node scripts/cy.js --cucumber-report",
"test:mocha-report": "rm -rf out && node scripts/cy.js --mocha-report",
"test": "rm -rf out && cypress run --reporter spec",
"test:dev": "cypress open",
"serve:report": "http-server out/cucumber/html"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"cucumberJson": {
"generate": true,
"outputFolder": "out/cucumber/json",
"filePrefix": "",
"fileSuffix": ".cucumber"
}
},
"dependencies": {
"cypress": "^9.4.1",
"cypress-cucumber-preprocessor": "^4.3.1",
"mochawesome": "^7.0.1",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^6.0.1",
"multiple-cucumber-html-reporter": "^1.18.3"
},
"devDependencies": {
"http-server": "^14.1.0"
}
}