-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
65 lines (65 loc) · 1.41 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
{
"name": "livedown",
"description": "Live Markdown previews for your favourite editor.",
"version": "2.1.1",
"author": "Hrvoje Simic <[email protected]>",
"bin": {
"livedown": "bin/livedown"
},
"bugs": {
"url": "https://github.com/shime/livedown/issues"
},
"dependencies": {
"body-parser": "^1.9.2",
"chokidar": "^3.0.0",
"express": "^4.10.2",
"markdown-it": "^8.3.1",
"markdown-it-emoji": "^1.4.0",
"markdown-it-github-headings": "^1.0.1",
"markdown-it-task-checkbox": "^1.0.4",
"minimist": "^1.1.0",
"opn": "^5.1.0",
"request": "^2.48.0",
"socket.io": "^2.0.3"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^6.2.0",
"np": "^2.9.0",
"standard": "^14.3.1",
"zombie": "^6.1.4"
},
"homepage": "https://github.com/shime/livedown",
"keywords": [
"alternative",
"atom",
"editor",
"emacs",
"flavored",
"gfm",
"gfms",
"github",
"grip",
"instant",
"live",
"markdown",
"md",
"octodown",
"plugin",
"preview",
"previewer",
"realtime",
"sublime",
"vim",
"vmd"
],
"license": "MIT",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/shime/livedown.git"
},
"scripts": {
"test": "node node_modules/.bin/standard test/* server.js bin/livedown utils.js public/client.js && node ./node_modules/.bin/mocha"
}
}