-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "msee",
"version": "0.3.5",
"description": "Msee is a command-line tool to read Markdown file in your terminal, and it's a library help your command-line software to output readable markdown content.",
"main": "./lib/msee.js",
"bin": "./bin/msee",
"scripts": {
"test": "env FORCE_COLOR=true tap --no-check-coverage test/**/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/firede/msee.git"
},
"dependencies": {
"ansi-regex": "^5.0.0",
"ansicolors": "^0.3.2",
"cardinal": "^1.0.0",
"chalk": "^2.3.1",
"combined-stream-wait-for-it": "^1.1.0",
"entities": "^2.0.3",
"marked": "0.3.12",
"nopt": "^4.0.3",
"strip-ansi": "^6.0.0",
"table-header": "^0.2.2",
"text-table": "^0.2.0",
"through2": "^3.0.1",
"wcstring": "^2.1.0",
"xtend": "^4.0.2"
},
"keywords": [
"markdown",
"terminal",
"reader",
"console",
"shell",
"colors",
"highlight"
],
"author": "Firede <[email protected]>",
"contributors": [
"Martin Heidegger <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/firede/msee/issues"
},
"devDependencies": {
"stream-to-string": "^1.2.0",
"tap": "^14.10.7"
}
}