forked from marcbachmann/node-html-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 907 Bytes
/
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
{
"name": "html-pdf",
"version": "2.2.0",
"description": "HTML to PDF converter that uses phantomjs",
"engines": {
"node": ">=4.0.0"
},
"main": "lib/index.js",
"directories": {
"test": "test"
},
"bin": {
"html-pdf": "bin/index.js"
},
"scripts": {
"test": "standard && tape test/index.js examples/*/test.js"
},
"author": "Marc Bachmann",
"license": "MIT",
"devDependencies": {
"standard": "^5.1.1",
"tap-spec": "^2.2.0",
"tape": "^3.4.0"
},
"optionalDependencies": {
"phantomjs-prebuilt": "^2.1.4"
},
"repository": {
"type": "git",
"url": "git://github.com/marcbachmann/node-html-pdf.git"
},
"keywords": [
"html",
"pdf",
"phantom",
"phantomjs",
"nodejs"
],
"bugs": {
"url": "https://github.com/marcbachmann/node-html-pdf/issues"
},
"homepage": "https://github.com/marcbachmann/node-html-pdf"
}