-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.62 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.62 KB
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
{
"name": "mdm-end-to-end",
"version": "0.1.0",
"scripts": {
"build": "tsc --noEmit",
"build-watch": "tsc --noEmit --watch",
"start": "cypress open -e TAGS='not @exclude'",
"test": "cypress run -e TAGS='not @exclude'",
"eslint": "npm run build && eslint . --ext ts --fix",
"eslint-nofix": "npm run build && eslint . --ext ts",
"eslint-report": "eslint . --ext ts --format checkstyle -o eslint_report.xml",
"generate-junit-report": "jrm cypress/reports/junit.xml \"cypress/reports/junit/*.xml\"",
"merge-mochawesome-json": "mochawesome-merge cypress/reports/mochawesome/json/*.json -o cypress/reports/mochawesome.json",
"generate-mochawesome-report": "npm run merge-mochawesome-json && marge cypress/reports/mochawesome.json -o cypress/reports/mochawesome -f index.html",
"generate-reports": "npm run generate-junit-report && npm run generate-mochawesome-report"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"devDependencies": {
"@types/cypress-cucumber-preprocessor": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.31.1",
"cypress": "^8.4.0",
"cypress-cucumber-preprocessor": "^4.2.0",
"cypress-multi-reporters": "^1.5.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"junit-report-merger": "^3.0.2",
"mocha-junit-reporter": "^2.0.0",
"mochawesome": "^6.2.2",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.2.0",
"typescript": "^4.4.3"
}
}