-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 781 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 781 Bytes
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
{
"author": "Nate Silva <nate@natesilva.com> (http://natesilva.com/)",
"name": "docserver",
"description": "Serve Markdown documents as static content (middleware)",
"version": "0.1.4",
"homepage": "https://github.com/natesilva/node-docserver",
"repository": {
"type": "git",
"url": "git://github.com/natesilva/node-docserver.git"
},
"main": "./lib/docserver.js",
"keywords": [
"static",
"web",
"server",
"markdown",
"middleware"
],
"engines": {
"node": "*"
},
"dependencies": {
"marked": "~0.2.5",
"async": "~0.1.22",
"mime": "~1.2.7"
},
"devDependencies": {
"connect": "~2.4.6",
"union": "~0.3.4",
"tap": "~0.3.1",
"redis": "~0.8.1"
},
"bin": {
"docserver": "./bin/serve.js"
}
}