-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
42 lines (42 loc) · 889 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
{
"name": "tap-spec",
"version": "5.0.0",
"description": "Formatted TAP output like Mocha's spec reporter",
"main": "index.js",
"scripts": {
"test": "echo 'Tests are out of date. Not running until fixed.'"
},
"repository": {
"type": "git",
"url": "https://github.com/scottcorgan/tap-spec.git"
},
"keywords": [
"tape",
"tap",
"mocha",
"spec",
"reporter"
],
"author": "Scott Corgan",
"license": "MIT",
"bugs": {
"url": "https://github.com/scottcorgan/tap-spec/issues"
},
"dependencies": {
"chalk": "^1.0.0",
"duplexer": "^0.1.1",
"figures": "^1.4.0",
"lodash": "^4.17.10",
"pretty-ms": "^2.1.0",
"repeat-string": "^1.5.2",
"tap-out": "^2.1.0",
"through2": "^2.0.0"
},
"bin": {
"tspec": "bin/cmd.js",
"tap-spec": "bin/cmd.js"
},
"devDependencies": {
"tapes": "^2.0.0"
}
}