forked from eKoopmans/html2pdf.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.81 KB
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
66
{
"name": "html2pdf.js",
"version": "0.14.0",
"description": "Client-side HTML-to-PDF rendering using pure JS",
"main": "dist/html2pdf.js",
"types": "./type.d.ts",
"files": [
"/src",
"/dist",
"./type.d.ts"
],
"repository": "git@github.com:eKoopmans/html2pdf.js.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.js/issues"
},
"homepage": "https://ekoopmans.github.io/html2pdf.js/",
"dependencies": {
"dompurify": "^3.3.1",
"html2canvas": "^1.0.0",
"jspdf": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@brightspace-ui/core": "^3.156.4",
"@brightspace-ui/testing": "^1.31.2",
"@web/dev-server": "^0.4.6",
"babel-loader": "^10.0.0",
"bootstrap": "^5.3.8",
"core-js": "^3.16.0",
"json5": "^2.2.3",
"lit": "^3.3.1",
"pdfjs-dist": "^5.3.93",
"rimraf": "^6.0.1",
"sinon": "^21.0.0",
"vue": "^2.7.16",
"webpack": "^5.101.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^6.0.1"
},
"scripts": {
"build": "npm run clean && webpack --env=prod",
"build:analyze": "npm run clean && webpack --env=prod --env=analyzer",
"clean": "rimraf dist/*",
"dev": "webpack --env=dev",
"dev:analyze": "webpack --env=dev --env=analyzer",
"start": "web-dev-server --open demo/ --node-resolve --watch",
"test": "npm run test:unit && npm run test:vdiff",
"test:unit": "d2l-test-runner --chrome",
"test:vdiff": "d2l-test-runner vdiff",
"test:vdiff:golden": "d2l-test-runner vdiff golden"
}
}