forked from wkrzywiec/cypress-simple-ci-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1007 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
31
32
{
"name": "cypress-simple-ci-report",
"version": "1.0.0",
"description": "Simple Cypress project",
"main": "index.js",
"dependencies": {
"cypress": "^4.8.0"
},
"devDependencies": {
"cypress-multi-reporters": "^1.4.0",
"mocha": "^8.0.1",
"mochawesome": "^6.1.1",
"mochawesome-merge": "^4.1.0",
"mochawesome-report-generator": "^5.1.0"
},
"scripts": {
"test": "cypress run",
"test:chrome": "cypress run --browser chrome",
"report:merge": "mochawesome-merge cypress/results/json/*.json > index.json",
"report:generate": "marge index.json --reportDir public --assetsDir public/assets --reportPageTitle index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/wkrzywiec/cypress-simple-ci-report.git"
},
"author": "Wojtek Krzywiec",
"license": "ISC",
"bugs": {
"url": "https://github.com/wkrzywiec/cypress-simple-ci-report/issues"
},
"homepage": "https://github.com/wkrzywiec/cypress-simple-ci-report#readme"
}