-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
51 lines (51 loc) · 1.05 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
{
"name": "xunit-file",
"description": "Basically the same reporter as mocha's xunit reporter, but writes the output in a file.",
"version": "2.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": "^4.6.2",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3",
"sinon": "^12.0.1"
},
"scripts": {
"test": "rm -rf _tmp && mocha test/*.spec.js"
},
"engines": {
"node": ">= 12.0.0"
}
}