forked from markserv/markserv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 2.79 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
122
{
"name": "markserv",
"version": "1.17.4",
"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",
"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": "https://github.com/markserv/markserv.git"
},
"dependencies": {
"analyze-deps": "^2.0.0",
"bluebird": "^3.7.2",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"connect": "^3.7.0",
"connect-livereload": "^0.6.1",
"deepmerge": "^4.2.2",
"emoji-regex": "^8.0.0",
"handlebars": "^4.5.3",
"implant": "^2.0.3",
"is-online": "^8.2.1",
"less": "^3.10.3",
"livereload": "^0.8.2",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.2.5",
"markdown-it-emoji": "^1.4.0",
"markdown-it-highlightjs": "^3.0.0",
"markdown-it-include": "^1.1.0",
"markdown-it-mathjax": "^2.0.0",
"markdown-it-table-of-contents": "^0.4.4",
"markdown-it-task-lists": "^2.1.1",
"meow": "^6.0.0",
"micromatch": "^4.0.2",
"mime": "^2.4.4",
"open": "^6.0.0",
"promptly": "^3.0.3",
"send": "^0.17.1",
"snyk": "^1.266.0",
"term-img": "^4.1.0"
},
"devDependencies": {
"all-contributors-cli": "^6.11.2",
"ava": "^2.4.0",
"coveralls": "^3.0.9",
"get-port": "^5.1.0",
"husky": "^3.1.0",
"nyc": "^15.0.0",
"request": "^2.88.0",
"xo": "^0.25.3"
},
"xo": {
"esnext": true,
"semicolon": false,
"rules": {
"node/no-unpublished-bin": 2
}
},
"ava": {
"failfast": true
}
}