forked from alanshaw/markdown-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.11 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
{
"name": "markdown-pdf",
"version": "10.0.0",
"description": "Markdown to PDF converter",
"main": "index.js",
"scripts": {
"test": "standard && istanbul cover node_modules/.bin/tape test/*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"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",
"license": "MIT",
"dependencies": {
"commander": "^3.0.0",
"duplexer": "^0.1.1",
"extend": "^3.0.2",
"highlight.js": "^9.15.9",
"phantomjs-prebuilt": "^2.1.3",
"remarkable": "^2.0.0",
"stream-from-to": "^1.4.2",
"through2": "^3.0.1",
"tmp": "^0.1.0"
},
"devDependencies": {
"coveralls": "^3.0.6",
"istanbul": "^0.4.0",
"pdf-text": "^0.4.0",
"standard": "^13.1.0",
"tape": "^4.11.0"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"markdown-pdf": "bin/markdown-pdf"
},
"standard": {
"ignore": [
"html5bp/**"
]
}
}