-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
58 lines (58 loc) · 1.35 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": "markdown-to-html",
"version": "0.0.13",
"description": "Converts markdown text to HTML. A readable stream plus utilities and web demo.",
"main": "markdown.js",
"bin": {
"markdown": "./bin/markdown",
"markdownb": "./bin/markdownb",
"github-markdown": "./bin/github-markdown",
"github-markdownb": "./bin/github-markdownb"
},
"preferGlobal": true,
"scripts": {
"test": "bash script/test",
"clean": "bash script/clean",
"start": "bash script/web-demo"
},
"repository": {
"type": "git",
"url": "git://github.com/cwjohan/markdown-to-html"
},
"keywords": [
"markdown",
"markdown-to-html",
"html",
"render",
"convert",
"stream",
"pipe"
],
"author": "Craig Johannsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/cwjohan/markdown-to-html/issues"
},
"homepage": "https://github.com/cwjohan/markdown-to-html",
"dependencies": {
"gfm-linkify": "^0.1.0",
"marked": "^0.3.2",
"open": "0.0.5",
"pygmentize-bundled": "^2.2.0",
"request": "^2.47.0",
"tmp": "0.0.24",
"yargs": "^1.3.3"
},
"directories": {
"test": "test"
},
"devDependencies": {
"errorhandler": "1.1.x",
"express": "4.6.x",
"jade": "1.4.x",
"method-override": "2.1.x",
"morgan": "1.5.x",
"serve-favicon": "2.0.x",
"stylus": "0.47.x"
}
}