-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "canvas2pdf",
"description": "Export an HTML canvas to PDF",
"license": "MIT",
"version": "1.1.1",
"repository": {
"type": "git",
"url": "https://github.com/joshua-gould/canvas2pdf.git"
},
"homepage": "https://github.com/joshua-gould/canvas2pdf",
"bugs": {
"url": "https://github.com/joshua-gould/canvas2pdf/issues"
},
"author": {
"name": "Joshua Gould"
},
"keywords": [
"pdf",
"canvas",
"canvas2pdf"
],
"private": true,
"source": "src/canvas2pdf.js",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"demo": "parcel index.html",
"test:generate-images": "yarn jest",
"test:convert-pdfs": "node tests/convert.pdf.to.png.js",
"test:diff": "node tests/diff.images.js",
"test": "yarn run test:generate-images && yarn run test:convert-pdfs && yarn run test:diff"
},
"devDependencies": {
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^5.5.0||^6.0.0",
"events": "^3.1.0",
"file-saver": "^2.0.5",
"gm": "^1.23.1",
"jest": "^29.6.2",
"jest-puppeteer": "^9.0.0",
"parcel": "^2.9.3",
"prettier": "3.0.3",
"process": "^0.11.10",
"puppeteer": "^20.9.0",
"stream-browserify": "^3.0.0",
"util": "^0.12.3"
},
"dependencies": {
"blob-stream": "^0.1.3",
"pdfkit": "^0.13.0"
}
}