-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 928 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
{
"name": "cypress-template",
"version": "1.0.0",
"description": "Cypress Template Framework",
"main": "index.js",
"author": "Abel Trejo Pineda",
"license": "ISC",
"devDependencies": {
"@bahmutov/cy-api": "^2.2.0",
"cypress": "^13.6.6",
"cypress-grep": "^3.0.3",
"cypress-multi-reporters": "^1.6.1",
"dayjs": "^1.10.6",
"mocha": "^9.1.3",
"mochawesome": "^7.0.1",
"mochawesome-merge": "^4.2.0",
"mysql": "github:mysqljs/mysql",
"pretty-print-json": "^1.3.0"
},
"scripts": {
"mocha-merge": "mochawesome-merge ./cypress/results/reports/mochawesome_reports/*.json -o cypress/results/reports/mochawesome_complete/complete-report.json",
"mocha-marge": "marge cypress/results/reports/mochawesome_complete/complete-report.json -f complete-report -o cypress/results/reports/mochawesome_complete",
"awesome-report": "npm run mocha-merge && npm run mocha-marge"
}
}