forked from mikaelbr/marked-terminal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "marked-terminal",
"version": "3.2.0",
"description": "A custom render for marked to output to the Terminal",
"main": "index.js",
"scripts": {
"test": "FORCE_HYPERLINK=0 mocha tests/*.js --reporter spec"
},
"files": [
"index.js"
],
"keywords": [
"marked",
"render",
"terminal",
"markdown",
"markdown-to-terminal"
],
"author": "Mikael Brevik",
"license": "MIT",
"peerDependencies": {
"marked": "^0.4.0 || ^0.5.0 || ^0.6.0"
},
"dependencies": {
"ansi-escapes": "^3.1.0",
"cardinal": "^2.1.1",
"chalk": "^2.4.1",
"cli-table": "^0.3.1",
"node-emoji": "^1.4.1",
"supports-hyperlinks": "^1.0.1"
},
"directories": {
"example": "example"
},
"devDependencies": {
"marked": "^0.6.0",
"mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mikaelbr/marked-terminal.git"
},
"bugs": {
"url": "https://github.com/mikaelbr/marked-terminal/issues"
},
"homepage": "https://github.com/mikaelbr/marked-terminal"
}