-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.33 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
{
"name": "did-resolution-test-suite",
"version": "0.0.1",
"scripts": {
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"pretest": "npm run clean:reports",
"test": "node ci/run.js",
"posttest": "npm run combine-reports && npm run generate-report",
"postreport": "npm run combine:reports",
"clean:reports": "rm -R -f reports && mkdir reports && mkdir reports/mochareports && mkdir reports/mocha",
"combine-reports": "mochawesome-merge reports/mocha/*.json > reports/mochareports/report.json",
"generate-report": "marge reports/mochareports/report.json -f reports -o reports/mochareports",
"final": "npx cypress-slack-reporter --ci-provider custom --custom-url https://danubetech.github.io/did-resolution-test-suite --report-dir reports/mochareports"
},
"devDependencies": {
"cypress": "^9.5.1",
"cypress-multi-reporters": "^1.5.0",
"cypress-slack-reporter": "^1.2.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.12.1",
"mocha": "^9.2.1",
"mocha-junit-reporter": "^2.0.2",
"mochawesome": "^7.1.2",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^6.1.1",
"prettier": "2.5.1"
},
"dependencies": {
"mochawesome-slack-reporter": "^1.0.3"
}
}