forked from michaelleeallen/mocha-junit-reporter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 997 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
33
34
35
36
37
38
39
40
41
42
{
"name": "cypress-junit-reporter",
"version": "1.3.1gs",
"description": "A JUnit reporter for mocha.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint index.js test/*; exit 0",
"test": "MOCHA_FILE=test/mocha.xml node_modules/.bin/mocha test --reporter=spec",
"tdd": "MOCHA_FILE=test/mocha.xml node_modules/.bin/mocha test --reporter=min --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/DKnA/cypress-junit-reporter"
},
"keywords": [
"mocha",
"junit",
"reporter"
],
"author": {
"name": "MSQ",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.0.0",
"chai-xml": "^0.3.0",
"eslint": "^4.0.0",
"mocha": "^3.0.0",
"test-console": "^1.0.0"
},
"dependencies": {
"debug": "^2.2.0",
"md5": "^2.1.0",
"mkdirp": "~0.5.1",
"strip-ansi": "^4.0.0",
"xml": "^1.0.0"
},
"peerDependencies": {
"mocha": ">=2.2.5"
}
}