-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
30 lines (30 loc) · 983 Bytes
/
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
{
"name": "cypress-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "npm run clean-reports",
"clean-reports": "rmdir /S /Q cypress\\reports && mkdir cypress\\reports && mkdir cypress\\reports\\mochareports",
"test": "cypress run",
"posttest": "npm run combine-reports && npm run generate-report",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@bahmutov/cy-api": "^1.4.3",
"cypress": "^6.1.0",
"cypress-multi-reporters": "^1.4.0",
"mocha": "^8.2.1",
"mochawesome": "^6.2.1",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.1.0"
},
"dependencies": {
"faker": "^5.4.0",
"mysql": "^2.18.1"
}
}