-
Notifications
You must be signed in to change notification settings - Fork 542
/
package.json
44 lines (44 loc) · 945 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
44
{
"name": "html-pdf",
"version": "3.0.1",
"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": {
"phantomjs-prebuilt": "^2.1.16",
"standard": "^5.1.1",
"tap-spec": "^5.0.0",
"tape": "^5.2.2"
},
"optionalDependencies": {
"phantomjs-prebuilt": "^2.1.16"
},
"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"
}