forked from michaelleeallen/mocha-junit-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
45
46
47
48
49
50
51
52
53
54
{
"name": "mocha-junit-reporter",
"version": "2.2.0",
"description": "A JUnit reporter for mocha.",
"main": "index.js",
"scripts": {
"ci": "npm run lint && npm run test",
"lint": "./node_modules/.bin/eslint '*.js' 'test/**/*.js'",
"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/michaelleeallen/mocha-junit-reporter"
},
"keywords": [
"mocha",
"junit",
"reporter"
],
"author": {
"name": "Michael Allen",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"chai": "^3.0.0",
"chai-xml": "^0.3.0",
"eslint": "^7.0.0",
"mocha": "^9.1.2",
"mocha2": "npm:[email protected]",
"mocha3": "npm:mocha@^3.0.0",
"mocha4": "npm:mocha@^4.0.0",
"mocha5": "npm:mocha@^5.0.0",
"mocha6": "npm:mocha@^6.0.0",
"mocha7": "npm:mocha@^7.2.0",
"mocha8": "npm:mocha@^8.4.0",
"mocha9": "npm:mocha@^9.1.2",
"rimraf": "^3.0.2",
"test-console": "^1.0.0",
"xmllint": "^0.1.1"
},
"dependencies": {
"debug": "^4.3.4",
"md5": "^2.3.0",
"mkdirp": "~1.0.4",
"strip-ansi": "^6.0.1",
"xml": "^1.0.1"
},
"peerDependencies": {
"mocha": ">=2.2.5"
}
}