-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.16 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
{
"name": "tap-markdown",
"version": "1.2.1",
"description": "Consume TAP, produce markdown.",
"bin": {
"tap-markdown": "bin/cmd.js"
},
"files": [
"bin"
],
"scripts": {
"test": "xo && tape test/*.js",
"example": "node ./example/test.js | ./bin/cmd.js || echo $?",
"version": "chg release -y && git add -A CHANGELOG.md"
},
"keywords": [
"tap",
"test",
"markdown",
"reporter"
],
"author": "J. Harshbarger",
"license": "MIT",
"dependencies": {
"concat-stream": "^1.5.1",
"figures": "^1.7.0",
"minimist": "^1.2.0",
"pretty-ms": "^2.1.0",
"tap-summary": "^3.0.0",
"tidy-markdown": "2.0.4"
},
"devDependencies": {
"tape": "^4.5.1",
"xo": "^0.15.1"
},
"xo": {
"space": 2,
"envs": [
"node"
],
"ignores": [
"example/**/*.js"
]
},
"main": "index.js",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Hypercubed/tap-markdown.git"
},
"bugs": {
"url": "/~https://github.com/Hypercubed/tap-markdown/issues"
},
"homepage": "/~https://github.com/Hypercubed/tap-markdown#readme"
}