forked from tsayen/dom-to-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.77 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@insomnia-dev/dom-to-image",
"version": "2.6.2",
"description": "Generates an image from a DOM node using HTML5 canvas and SVG",
"main": "src/dom-to-image.js",
"unpkg": "dist/dom-to-image.js",
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@fortawesome/fontawesome-free": "^5.15.1",
"babel-loader": "^8.2.2",
"chai": "^2.2.0",
"grunt": "~0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^1.0.0",
"imagediff": "^1.0.8",
"jquery": "^2.1.3",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.8",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.3.0",
"mocha": "^2.2.4",
"ocrad.js": "0.0.1",
"prettier": "^2.2.1",
"tesseract.js": "^1.0.19",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"start": "webpack --watch",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"test": "./node_modules/.bin/grunt test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/insomnia-dev/dom-to-image.git"
},
"keywords": [
"dom",
"image",
"raster",
"render",
"html",
"canvas",
"svg"
],
"author": "Anatolii Saienko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/insomnia-dev/dom-to-image/issues"
},
"homepage": "https://github.com/insomnia-dev/dom-to-image"
}