forked from tsayen/dom-to-image
-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
80 lines (80 loc) · 2.86 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "dom-to-image-more",
"version": "3.5.0",
"description": "Generates an image from a DOM node using HTML5 canvas and SVG",
"main": "dist/dom-to-image-more.min.js",
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^9.12.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-karma": "^4.0.2",
"js-yaml": "^4.1.0",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"semver": "^7.6.3"
},
"scripts": {
"format": "eslint src --fix && prettier --write .",
"lint": "eslint --max-warnings=0 src && prettier --check .",
"test": "grunt test --debug",
"build": "grunt",
"build:ci": "grunt ci",
"beta-version-patch": "npm version $(semver $npm_package_version -i prerelease --preid beta)",
"beta-version-minor": "npm version $(semver $npm_package_version -i preminor --preid beta)",
"beta-version-major": "npm version $(semver $npm_package_version -i premajor --preid beta)",
"rc-version": "npm version $(semver $npm_package_version -i prerelease --preid rc)",
"final-release": "npm version $(semver $npm_package_version -i)"
},
"repository": "github:1904labs/dom-to-image-more",
"keywords": [
"dom",
"image",
"raster",
"render",
"html",
"canvas",
"svg",
"png"
],
"author": "Marc Brooks <[email protected]> (https://about.me/IDisposable)",
"contributors": [
"Anatolii Saienko <[email protected]>",
"Marc Brooks <[email protected]>",
"Daniel Fischer <[email protected]>",
"Aidas Klimas",
"Edgardo Di Gesto",
"樊冬 Fan Dong <[email protected]>",
"Joseph White @JosWhite",
"Phani Rithvij @phanirithvij",
"David DOLCIMASCOLO @ddolcimascolo",
"Nikita Staroseltsev @Nikitozz13",
"Zee @zm-cttae",
"Andoni Zubimendi @AndoniZubimendi",
"Joshua Walsh @JoshuaWalsh",
"Emre Coban @emrecoban",
"Nate Stuyvesant @nstuyvesant",
"King Wang @eachmawzw",
"TMM Schmit @tmmschmit",
"Aravind @codesculpture",
"Shi Wenyu @cWenyu",
"David Burns @davidburns573",
"Yujia Cheng @YujiaCheng1996",
"Julien Dorra @juliendorra",
"Sean Zhang @SeanZhang-eaton"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/1904labs/dom-to-image-more/issues"
},
"homepage": "https://github.com/1904labs/dom-to-image-more#readme"
}