forked from mikaelbr/marked-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 985 Bytes
/
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
{
"name": "marked-terminal",
"version": "1.6.2",
"description": "A custom render for marked to output to the Terminal",
"main": "index.js",
"scripts": {
"test": "mocha tests/*.js --reporter spec"
},
"files": [
"index.js"
],
"keywords": [
"marked",
"render",
"terminal",
"markdown",
"markdown-to-terminal"
],
"author": "Mikael Brevik",
"license": "MIT",
"peerDependencies": {
"marked": "^0.3.3"
},
"dependencies": {
"cardinal": "^1.0.0",
"chalk": "^1.0.0",
"cli-table": "^0.3.1",
"lodash.assign": "^4.2.0",
"node-emoji": "^1.3.1"
},
"directories": {
"example": "example"
},
"devDependencies": {
"marked": "^0.3.3",
"mocha": "^3.0.2"
},
"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"
}