-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 747 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 747 Bytes
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
{
"name": "tap-json",
"version": "1.0.0",
"description": "JSON TAP output formatter.",
"main": "index.js",
"bin": {
"tap-json": "bin/tap-json"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/gummesson/tap-json.git"
},
"keywords": [
"test",
"tap",
"tape",
"mocha",
"reporter"
],
"author": "Ellen Gummesson",
"license": "MIT",
"bugs": {
"url": "https://github.com/gummesson/tap-json/issues"
},
"homepage": "https://github.com/gummesson/tap-json",
"devDependencies": {
"tape": "^2.12.3"
},
"dependencies": {
"ndjson": "^1.4.3",
"tap-parser": "^0.4.3",
"through2": "^0.4.1",
"duplexer": "^0.1.1"
}
}