-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.55 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
{
"name": "cypress",
"version": "1.0.0",
"description": "UI Automation using Cypress",
"main": "index.js",
"scripts": {
"test": "cypress run",
"cypress:open": "cypress open",
"lint-fix": "eslint . --fix",
"lint": "eslint .",
"clean:reports": "rm -R -f cypress/reports && mkdir cypress/reports && mkdir cypress/reports/mochareports",
"combine-reports": "mochawesome-merge cypress/reports/mocha/*.json > cypress/reports/mochareports/report.json",
"generate-report": "marge cypress/reports/mochareports/report.json -f report -o cypress/reports/mochareports",
"test:report" : "npm run clean:reports && npm run test && npm run combine-reports && npm run generate-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianoroceo/Cypress.git"
},
"keywords": [
"Cypress",
"UI Tests",
"UI Automation Tests"
],
"author": "Ian Oroceo",
"license": "ISC",
"bugs": {
"url": "https://github.com/ianoroceo/Cypress/issues"
},
"homepage": "https://github.com/ianoroceo/Cypress#readme",
"devDependencies": {
"cypress": "^8.0.0",
"cypress-multi-reporters": "^1.5.0",
"dotenv": "^10.0.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.0.2",
"mocha-junit-reporter": "^2.0.0",
"mochawesome": "^6.2.2",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.2.0"
}
}