forked from alanshaw/markdown-pdf
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "markdown-pdf",
"version": "3.0.2",
"description": "Markdown to PDF converter",
"main": "index.js",
"scripts": {
"test": "mocha",
"coveralls": "jscoverage lib && MARKDOWNPDF_COV=1 mocha -R mocha-lcov-reporter | coveralls",
"coverage": "MARKDOWNPDF_COV=1 mocha -R html-cov > coverage.html"
},
"repository": {
"type": "git",
"url": "[email protected]:alanshaw/markdown-pdf.git"
},
"keywords": [
"markdown",
"pdf",
"convert",
"template"
],
"author": "Alan Shaw",
"homepage": "https://github.com/alanshaw/markdown-pdf",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/alanshaw/markdown-pdf/blob/master/LICENSE"
}
],
"dependencies": {
"commander": "^2.3.0",
"duplexer": "~0.1.1",
"extend": "^1.3.0",
"marked": "~0.3.2",
"phantomjs": "~1.9.7-15",
"pygmentize-bundled": "^2.1.1",
"stream-from-to": "~1.4.0",
"through": "~2.3.4",
"tmp": "~0.0.24"
},
"devDependencies": {
"mocha": "^1.21.3",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "^2.11.1",
"jscoverage": "^0.5.5",
"pdf-text": "^0.4.0"
},
"engines": {
"node": "~0.10.0"
},
"bin": {
"markdown-pdf": "bin/markdown-pdf"
}
}