forked from peerigon/xunit-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 979 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
43
44
45
46
{
"name": "xunit-file-reporter",
"description": "Basically the same reporter as mocha's xunit reporter, but writes the output in a file.",
"version": "0.0.10",
"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": "Ramon Gebben",
"email": "ramon@ra-ge.net"
}
],
"keywords": [
"mocha",
"xunit",
"file",
"reporter"
],
"main": "lib/xunit-file.js",
"repository": "git://github.com/RamonGebben/xunit-file.git",
"license": "MIT",
"dependencies": {
"mkdirp": "^0.5.1",
"mocha": "^2.4.5"
},
"devDependencies": {
"mocha": "^2.2.5"
},
"scripts": {
"test": "rm -rf _tmp && mocha test/*.spec.js"
}
}