-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "js-html2pdf",
"version": "1.1.4",
"description": "HTML to PDF Javascript Library",
"main": "lib/html2pdf.js",
"scripts": {
"build": "webpack --env dev && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev"
},
"repository": {
"type": "git",
"url": "https://github.com/airarrazaval/html2pdf.git"
},
"keywords": [
"webpack",
"es6",
"library",
"universal",
"umd",
"commonjs",
"html2pdf",
"html2pdfjs"
],
"author": "Alfredo Irarrazaval <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/airarrazaval/html2pdf/issues"
},
"homepage": "https://github.com/airarrazaval/html2pdf",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.13.1",
"eslint-loader": "^1.9.0",
"jsdom": "^11.10.0",
"jsdom-global": "^3.0.2",
"webpack": "^3.10.0",
"yargs": "^10.0.3"
},
"dependencies": {
"html2canvas": "^1.0.0-alpha.12",
"jspdf": "^1.3.5",
"native-promise-only": "^0.8.1"
}
}