forked from eKoopmans/html2pdf.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1016 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
{
"name": "html2pdf",
"version": "0.7.6",
"description": "Client-side HTML-to-PDF rendering using pure JS",
"main": "dist/require/html2pdf.cjs.js",
"module": "dist/include/html2pdf.es.js",
"browser": "dist/html2pdf.js",
"repository": {
"type": "git",
"url": "git+https://github.com/eKoopmans/html2pdf.git"
},
"keywords": [
"javascript",
"pdf-generation",
"html",
"client-side",
"canvas"
],
"author": {
"name": "Erik Koopmans",
"email": "erik@erik-koopmans.com",
"url": "https://www.erik-koopmans.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/eKoopmans/html2pdf/issues"
},
"homepage": "https://github.com/eKoopmans/html2pdf",
"dependencies": {
"html2canvas": "https://github.com/eKoopmans/html2canvas/tarball/develop",
"jspdf": "^1.3.5"
},
"devDependencies": {
"rollup": "^0.51.8"
},
"scripts": {
"build": "npm install && rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
}
}