UNPKG

909 BJSONView Raw
1{
2 "name": "mocha-junit-reporter",
3 "version": "1.12.1",
4 "description": "A JUnit reporter for mocha.",
5 "main": "index.js",
6 "scripts": {
7 "test": "MOCHA_FILE=test/mocha.xml node_modules/.bin/mocha test --reporter=spec",
8 "tdd": "MOCHA_FILE=test/mocha.xml node_modules/.bin/mocha test --reporter=min --watch"
9 },
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/michaelleeallen/mocha-junit-reporter"
13 },
14 "keywords": [
15 "mocha",
16 "junit",
17 "reporter"
18 ],
19 "author": {
20 "name": "Michael Allen",
21 "email": "michael.lee.allen@gmail.com"
22 },
23 "license": "MIT",
24 "devDependencies": {
25 "chai": "^3.0.0",
26 "chai-xml": "^0.3.0",
27 "test-console": "^1.0.0",
28 "mocha": "^3.0.0"
29 },
30 "dependencies": {
31 "debug": "^2.2.0",
32 "md5": "^2.1.0",
33 "mkdirp": "~0.5.1",
34 "xml": "^1.0.0"
35 },
36 "peerDependencies": {
37 "mocha": "^3 || ^2.2.5"
38 }
39}