-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
45 lines (45 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
{
"name": "tap-xunit",
"version": "2.4.1",
"description": "TAP to xUnit XML converter.",
"main": "lib/converter.js",
"bin": {
"tap-xunit": "./bin/tap-xunit",
"txunit": "./bin/tap-xunit"
},
"scripts": {
"test": "node test/runner.js && tape unit-tests/**/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/aghassemi/tap-xunit.git"
},
"keywords": [
"tap",
"tape",
"xunit",
"junit"
],
"author": {
"name": "Ali Ghassemi",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aghassemi/tap-xunit/issues"
},
"homepage": "https://github.com/aghassemi/tap-xunit",
"devDependencies": {
"concat-stream": "~1.5.1",
"tape": "~4.2.2",
"xml2js": "^0.4.17"
},
"dependencies": {
"through2": "~2.0.0",
"xmlbuilder": "~4.2.0",
"duplexer": "~0.1.1",
"tap-parser": "~1.2.2",
"xtend": "~4.0.0",
"minimist": "~1.2.0"
}
}