forked from gummesson/tap-min
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 KB
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
45
46
47
48
49
{
"name": "tap-min",
"version": "3.0.0",
"description": "Minimal TAP output formatter.",
"type": "module",
"bin": {
"tap-min": "cli.js"
},
"files": [
"index.js",
"cli.js"
],
"scripts": {
"lint": "eslint .",
"test": "npm run test:ok && npm run test:not-ok && npm run test:empty",
"test:ok": "./cli.js <test/ok.txt >/dev/null",
"test:not-ok": "./cli.js <test/not-ok.txt >/dev/null || exit 0; exit 1",
"test:empty": "./cli.js <test/empty.txt >/dev/null || exit 0; exit 1",
"prepublishOnly": "npm run lint && npm test"
},
"repository": "derhuerst/tap-min",
"keywords": [
"test",
"tap",
"tape",
"mocha",
"reporter"
],
"author": "Jannis R <mail@jannisr.de>",
"contributors": [
"Tim Eulitz <tim.eulitz@wikimedia.de>"
],
"license": "ISC",
"bugs": "https://github.com/derhuerst/tap-min/issues",
"homepage": "https://github.com/derhuerst/tap-min",
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0",
"duplexer3": "^1.0.0",
"hirestime": "^7.0.3",
"pretty-ms": "^8.0.0",
"tap-parser": "^13.0.2-1"
},
"devDependencies": {
"eslint": "^8.47.0"
}
}