forked from markserv/markserv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "markserv",
"version": "0.1.1",
"description": "markserv serves Markdown files as GitHub style HTML and LiveReloads your files in the browser as you edit.",
"keywords": [
"markdown",
"livereload",
"server",
"github"
],
"scripts": {
"test": "xo"
},
"bin": {
"markserv": "server.js"
},
"author": "Alistair MacDonald <[email protected]>",
"email": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/f1lt3r/markserv-legacy.git"
},
"dependencies": {
"ansi": "^0.3.0",
"bluebird": "^3.4.7",
"commander": "^2.5.1",
"connect": "^3.3.3",
"connect-livereload": "^0.6.0",
"jsdom": "^9.9.1",
"less": "^2.4.0",
"livereload": "^0.3.6",
"livereload-js": "^2.2.2",
"marked": "git://github.com/f1lt3r/marked#master",
"mime": "^1.2.11",
"open": "0.0.5",
"openport": "0.0.4",
"send": "^0.14.1",
"websocket.io": "git://github.com/LearnBoost/websocket.io#5f0b3799f50944bc4d1eb58acdef61c38883d6cf"
},
"devDependencies": {
"connect-livereload": "^0.6.0",
"livereload": "^0.6.0",
"xo": "^0.17.0"
},
"xo": {
"esnext": true,
"space": 2,
"globals": [
"it",
"describe",
"beforeEach"
],
"rules": {
"no-use-extend-native": 0
}
}
}