forked from bauhausjs/phantom-html2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.38 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "phantom-html2pdf",
"description": "Simple and lightweight HTML to PDF conversion using Node and PhantomJS",
"contributors": [
{
"name": "Philipp Christoph"
},
{
"name": "Evgenij Terehov",
"email": "[email protected]"
},
{
"name": "Samuel Rossille",
"email": "[email protected]"
}
],
"version": "3.0.0",
"dependencies": {
"bluebird": "^3.4.6",
"debug": "latest",
"phantomjs-prebuilt": "latest",
"tmp": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/bauhausjs/phantom-html2pdf.git"
},
"keywords": [
"pdf",
"html",
"converter",
"bauhaus"
],
"main": "./lib/phantom-html2pdf",
"bin": {
"phantom-html2pdf": "./bin/phantom-html2pdf"
},
"devDependencies": {
"assert": "^1.3.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"bugs": {
"url": "https://github.com/bauhausjs/html2pdf/issues"
},
"homepage": "https://github.com/bauhausjs/html2pdf",
"license": "SEE LICENSE IN LICENSE",
"maintainers": [
{
"name": "eterehov",
"email": "[email protected]"
},
{
"name": "dustin-H"
}
],
"scripts": {
"test": "istanbul cover _mocha --include-all-sources -x \"**/test/**\" -- --recursive",
"travis": "npm test"
}
}