-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
{
"name": "mdserver",
"version": "2.2.6",
"description": "static http server with markdown supported",
"main": "index.js",
"bin": "index.js",
"dependencies": {
"chalk": "^0.5.1",
"commander": "^2.4.0",
"connect": "^3.3.0",
"debug": "^2.1.2",
"marked": "^0.3.2",
"moment": "^2.8.3",
"serve-index": "^1.5.0",
"serve-markdown": "^1.1.0",
"serve-static": "^1.7.0"
},
"devDependencies": {
"istanbul": "^0.3.2",
"mocha": "^2.0.1",
"should": "^4.1.0",
"supertest": "^0.14.0"
},
"repository": "git://github.com/zhiyelee/mdserver.git",
"homepage": "https://github.com/zhiyelee/mdserver",
"bugs": "https://github.com/zhiyelee/mdserver/issues",
"keywords": [
"http",
"nodejs",
"server",
"simpleHTTPServer",
"markdown web server",
"markdown server",
"markdown"
],
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks --require should test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks --require should test/"
},
"preferglobal": true,
"author": "zhiyelee <github@zhiye.li> (http://zhiye.li)",
"license": "MIT"
}