forked from axross/tap-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "@openaddresses/tap-diff",
"type": "module",
"version": "1.0.0",
"description": "The most human-friendly TAP reporter",
"main": "./lib/index.js",
"bin": {
"tap-diff": "./cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint cli.js lib/**.js lib/**/*.js"
},
"author": "axross <[email protected]> (http://axross.me/)",
"license": "MIT",
"dependencies": {
"chalk": "^5.0.1",
"diff": "^5.0.0",
"duplexer": "^0.1.1",
"eslint": "^8.23.1",
"eslint-plugin-node": "^11.1.0",
"figures": "^5.0.0",
"jsondiffpatch": "^0.4.0",
"pretty-ms": "^8.0.0",
"tap-parser": "^11.0.0",
"through2": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openaddresses/tap-diff.git"
},
"bugs": {
"url": "https://github.com/openaddresses/tap-diff/issues"
},
"homepage": "https://github.com/openaddresses/tap-diff#readme",
"keywords": [
"tap",
"tape",
"ava",
"test",
"reporter",
"diff"
]
}