-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
35
36
37
38
39
40
41
42
43
44
{
"name": "cypress-xml-reporter",
"version": "1.0.2",
"description": "A JUnit XML reporter for Cypress that includes screenshots, videos, and logs.",
"main": "src/reporter.js",
"scripts": {
"data": "npx cypress run --spec \"cypress/e2e/**/data*\" --reporter src/reporter.js DEBUG_ENABLED=true",
"datalog": "npx cypress run --spec \"cypress/e2e/**/data*\" --config-file cypress.config.log.js --reporter src/reporter.js",
"test": "mocha tests --reporter xunit --reporter-options output=xunit.xml",
"lint": "eslint src/*.js cypress/e2e tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testspace-com/cypress-xml-reporter.git"
},
"keywords": [
"cypress",
"mocha",
"junit",
"xml",
"xunit",
"reporter",
"Testspace"
],
"author": {
"name": "Mark Underseth",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/testspace-com/cypress-xml-reporter/issues"
},
"homepage": "https://github.com/testspace-com/cypress-xml-reporter#readme",
"devDependencies": {
"chai": "^4.3.8",
"cypress": "^12.17.4",
"cypress-terminal-report": "^5.3.6",
"eslint": "^8.49.0",
"mocha": "^10.2.0"
},
"dependencies": {
"xml2js": "^0.6.2"
}
}