-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
44 lines (44 loc) · 1021 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
{
"name": "tap-diff",
"version": "0.1.1",
"description": "The most human-friendly TAP reporter",
"main": "./distributions/index.js",
"bin": {
"tap-diff": "./distributions/cli.js"
},
"scripts": {
"babel": "babel ./sources --out-dir ./distributions",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "axross <[email protected]> (http://axross.me/)",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"diff": "^2.2.1",
"duplexer": "^0.1.1",
"figures": "^1.4.0",
"jsondiffpatch": "^0.1.41",
"pretty-ms": "^2.1.0",
"tap-parser": "^1.2.2",
"through2": "^2.0.0"
},
"devDependencies": {
"babel": "^5.8.34"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axross/tap-diff.git"
},
"bugs": {
"url": "https://github.com/axross/tap-diff/issues"
},
"homepage": "https://github.com/axross/tap-diff#readme",
"keywords": [
"tap",
"tape",
"ava",
"test",
"reporter",
"diff"
]
}