forked from tsayen/dom-to-image
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.85 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
{
"name": "dom-to-image",
"version": "3.0.0",
"description": "Generates an image from a DOM node using HTML5 canvas and SVG. With Safari fallback to Node.js/Puppeteer for high-quality rendering!",
"main": "src/dom-to-image.js",
"devDependencies": {
"chai": "^4.3.7",
"express": "^4.18.2",
"grunt": "~1.3.0",
"grunt-cli": "^1.4.3",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-karma": "^4.0.0",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.2.0",
"multer": "^1.4.5-lts.1",
"puppeteer": "^24.29.1"
},
"optionalDependencies": {
"puppeteer": "^24.15.0"
},
"scripts": {
"test": "./node_modules/.bin/grunt test",
"example:render": "node examples/node-renderer.js",
"example:server": "node examples/fallback-server.js",
"start-server": "npm install puppeteer && npm run example:server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsayen/dom-to-image.git"
},
"keywords": [
"dom",
"image",
"raster",
"render",
"html",
"canvas",
"svg",
"puppeteer",
"nodejs",
"screenshot",
"fullpage"
],
"author": "Anatolii Saienko <anatoly.sayenko@gmail.com>",
"contributors": [
"Your Name <your.email@example.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tsayen/dom-to-image/issues"
},
"homepage": "https://github.com/tsayen/dom-to-image#readme",
"engines": {
"node": ">=18.0.0"
}
}