forked from peerigon/xunit-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.01 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
{
"name": "xunit-file",
"description": "Basically the same reporter as mocha's xunit reporter, but writes the output in a file.",
"version": "1.0.0",
"author": {
"name": "Matthias Jahn",
"email": "matthias.jahn@peerigon.com"
},
"contributors": [
{
"name": "Matthias Jahn",
"email": "matthias.jahn@peerigon.com"
},
{
"name": "Paul Torka",
"email": "paul.torka@yahoo.de"
},
{
"name": "Peter Janes",
"email": "peter.janes@ek3.com"
},
{
"name": "Nathan Fairhurst",
"email": "nathan.p3pictures@gmail.com"
}
],
"keywords": [
"mocha",
"xunit",
"file",
"reporter"
],
"main": "lib/xunit-file.js",
"repository": "git://github.com/peerigon/xunit-file.git",
"license": "MIT",
"dependencies": {
"dateformat": "^1.0.12",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.2.5",
"sinon": "^1.17.3"
},
"scripts": {
"test": "rm -rf _tmp && mocha test/*.spec.js"
}
}