-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 926 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 926 Bytes
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
{
"name": "mkpdf",
"version": "1.0.0",
"description": "Convert Markdown to PDF using marked and wkhtmltopdf",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"mkpdf": "bin/mkpdf"
},
"keywords": [
"markdown",
"pdf",
"marked",
"wkhtmltopdf"
],
"author": "Laza Bogdan <laza.bogdan@macro-net.ro>",
"license": "ISC",
"dependencies": {
"commander": "^2.9.0",
"del": "^2.2.0",
"duplexer": "^0.1.1",
"extend": "^3.0.0",
"highlight.js": "^9.4.0",
"marked": "^0.3.5",
"stream-from-to": "^1.4.3",
"through2": "^2.0.1",
"wkhtmltopdf": "^0.3.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/themekit/mkpdf.git"
},
"bugs": {
"url": "https://github.com/themekit/mkpdf/issues"
},
"homepage": "https://github.com/themekit/mkpdf#readme"
}