forked from tape-testing/faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.39 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@prantlf/faucet",
"version": "1.0.1",
"description": "Human-readable TAP reporter/formatter.",
"author": {
"name": "Ferdinand Prantl",
"email": "[email protected]",
"url": "http://prantl.tk"
},
"contributors": [
{
"name": "James Halliday",
"email": "[email protected]",
"url": "http://substack.net"
},
{
"name": "Chris Apparicio",
"email": "[email protected]"
}
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/faucet/blob/master/LICENSE"
}
],
"homepage": "https://github.com/prantlf/faucet",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/faucet.git"
},
"bugs": {
"url": "https://github.com/prantlf/faucet/issues"
},
"engines": {
"node": ">=8"
},
"main": "index.js",
"bin": {
"faucet": "bin/cmd.js"
},
"files": [
"bin",
"index.js"
],
"scripts": {
"lint": "denolint",
"check": "tape test/long-message/index.js | node bin/cmd",
"test": "denolint && tape test/long-message/index.js | c8 node bin/cmd && c8 --no-clean node test/example/index.js && c8 --no-clean node bin/cmd example/tape.js && node example/test.js | c8 --no-clean node bin/cmd -v || c8 --no-clean node bin/cmd || c8 report -r lcov -r text && c8 check-coverage"
},
"c8": {
"include": [
"index.js",
"bin"
],
"reporter": [],
"branches": 80,
"lines": 75,
"functions": 85,
"statements": 75
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"dependencies": {
"defined": "^1.0.0",
"duplexer3": "^0.1.4",
"minimist": "^1.2.6",
"sprintf-js": "^1.1.2",
"tap-parser": "^11.0.1",
"tape": "^5.5.3",
"through2": "^4.0.2"
},
"devDependencies": {
"@node-rs/deno-lint": "^1.13.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"c8": "^7.11.3",
"tiny-glob": "^0.2.9"
},
"keywords": [
"tap",
"tap-reporter",
"tap-formatter",
"reporter",
"formatter",
"human",
"test",
"anything",
"protocol",
"pretty"
]
}