forked from markserv/markserv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.78 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "markserv",
"version": "1.17.2",
"description": "🏁 serve markdown as html (GitHub style), index directories, live-reload as you edit",
"preferGlobal": true,
"scripts": {
"test": "xo && npm run cover",
"cover": "nyc --reporter=lcov --reporter=html --reporter=text ava ./tests/**/*.test.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls -v"
},
"keywords": [
"code",
"directory",
"gfm",
"github",
"github flavored markdown",
"highlighting",
"html",
"include",
"index",
"indexes",
"links",
"live",
"live-reload",
"livereload",
"markdown",
"markdown-it",
"marked",
"markitdown",
"md",
"realtime",
"reload",
"server",
"syntax highlighting",
"template",
"templating"
],
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"bin": {
"markserv": "lib/cli.js",
"readme": "lib/readme.js"
},
"files": [
"lib/cli.js",
"lib/cli-defs.js",
"lib/cli-help.txt",
"lib/readme.js",
"lib/server.js",
"lib/splash.js",
"lib/icons",
"lib/templates/directory.html",
"lib/templates/markdown.html",
"lib/templates/error.html",
"lib/templates/github.less",
"lib/templates/highlight-js-github-gist.css",
"lib/templates/markserv.css",
"media/markserv-favicon-96x96.png",
"media/markserv-logo-term.png"
],
"author": "Alistair MacDonald <[email protected]>",
"email": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/markserv/markserv.git"
},
"dependencies": {
"analyze-deps": "^2.0.0",
"bluebird": "^3.4.7",
"chalk": "^2.4.0",
"commander": "^2.5.1",
"connect": "^3.6.5",
"connect-livereload": "^0.6.0",
"deepmerge": "^2.1.0",
"emoji-regex": "^6.5.1",
"handlebars": "^4.0.11",
"implant": "^2.0.3",
"is-online": "^7.0.0",
"less": "^3.8.1",
"livereload": "^0.7.0",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "^5.0.2",
"markdown-it-emoji": "^1.4.0",
"markdown-it-highlightjs": "^3.0.0",
"markdown-it-include": "^1.0.0",
"markdown-it-table-of-contents": "^0.4.3",
"markdown-it-task-lists": "^2.1.1",
"meow": "^5.0.0",
"micromatch": "^3.1.3",
"mime": "^1.4.1",
"opn": "^5.3.0",
"promptly": "^3.0.3",
"send": "^0.16.0",
"snyk": "^1.134.2",
"term-img": "^3.0.0"
},
"devDependencies": {
"all-contributors-cli": "^6.1.2",
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"get-port": "^3.2.0",
"husky": "^0.14.3",
"nyc": "^11.7.1",
"request": "^2.85.0",
"xo": "^0.20.3"
},
"xo": {
"esnext": true,
"semicolon": false,
"rules": {
"node/no-unpublished-bin": false
}
},
"ava": {
"failfast": true
}
}