-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "treport",
"description": "Reporters for node-tap",
"version": "3.0.4",
"author": "Isaac Z. Schlueter <[email protected]> (https://izs.me)",
"dependencies": {
"@isaacs/import-jsx": "^4.0.1",
"cardinal": "^2.1.1",
"chalk": "^3.0.0",
"ink": "^3.2.0",
"ms": "^2.1.2",
"tap-parser": "^11.0.0",
"tap-yaml": "^1.0.0",
"unicode-length": "^2.0.2"
},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"events-to-array": "^1.1.2",
"ink-testing-library": "^2.1.0",
"minipass": "^3.1.1",
"react": "^17.0.2",
"tap": "^16.3.0"
},
"license": "ISC",
"scripts": {
"test": "tap",
"snap": "tap",
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags"
},
"tap": {
"jsx": true,
"test-env": [
"TERM_PROGRAM=iTerm.app",
"TERM=xterm-256color",
"TERM_PROGRAM_VERSION=3.2.7",
"COLORTERM=truecolor",
"FORCE_COLOR=1"
],
"coverage-map": "map.js"
},
"files": [
"index.js",
"types.js",
"lib/**/!(*.test).js"
],
"nyc": {
"all": true,
"include": [
"index.js",
"lib/**/!(*.test).js"
]
},
"main": "index.js",
"repository": "git://github.com/tapjs/treport"
}