-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "tap-mocha-reporter",
"version": "5.0.4",
"description": "Format a TAP stream using Mocha's set of reporters",
"main": "index.js",
"scripts": {
"test": "tap test/*.js",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/isaacs/tap-mocha-reporter"
},
"author": "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/isaacs/tap-mocha-reporter/issues"
},
"homepage": "https://github.com/isaacs/tap-mocha-reporter",
"dependencies": {
"color-support": "^1.1.0",
"debug": "^4.1.1",
"diff": "^4.0.1",
"escape-string-regexp": "^2.0.0",
"glob": "^7.0.5",
"tap-parser": "^11.0.0",
"tap-yaml": "^1.0.0",
"unicode-length": "^2.0.2"
},
"devDependencies": {
"tap": "^15.2.2"
},
"bin": "index.js",
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">= 8"
}
}