-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "cypress_e2e_showcase",
"version": "1.0.0",
"description": "Cypress End-To-End Testing (JS)",
"main": "index.js",
"scripts": {
"cy:open": "npx cypress open",
"cy:test": "npm run scripts || npm run posttest",
"clean:reports": "if exist cypress\\reports rmdir /s/q cypress\\reports && mkdir cypress\\reports\\mochareports",
"pretest": "npm run clean:reports",
"scripts": "cypress run --browser chrome --headless",
"combine-reports": "mochawesome-merge ./cypress/reports/mocha/*.json -o cypress/reports/report.json",
"generate-report": "marge cypress/reports/mochareports/report.json -f report -o cypress/reports/mocha",
"posttest": "npm run combine-reports && npm run generate-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mahbub091/cypress_e2e_showcase.git"
},
"keywords": [
"cypress",
"javascript framework",
"End to End testing",
"component testing",
"mochawesome",
"chai",
"jasmine"
],
"author": "Mahbub091",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mahbub091/cypress_e2e_showcase/issues"
},
"devDependencies": {
"@cypress/xpath": "^2.0.3",
"@faker-js/faker": "^7.6.0",
"cypress": "^11.2.0",
"cypress-if": "^1.10.2",
"cypress-mochawesome-reporter": "^3.2.2",
"cypress-multi-reporters": "^1.6.2",
"cypress-plugin-store": "^1.3.2",
"eslint-plugin-cypress": "^2.12.1",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.3.0",
"mochawesome-report-generator": "^6.2.0",
"prettier": "^2.7.1"
},
"dependencies": {
"cypress_e2e_showcase": "file:",
"cypress-real-events": "^1.7.4",
"dotenv": "^16.4.5",
"mocha": "^10.2.0"
}
}