forked from LetsCodeItLLC/save-svg-as-png-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 810 Bytes
/
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
{
"name": "save-svg-as-png-3",
"version": "3.2.0",
"description": "Convert a browser SVG to PNG and download it, no browser DataURL size limits",
"main": "lib/saveSvgAsPng.js",
"scripts": {
"build": "babel src -d lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/LetsCodeItLLC/save-svg-as-png-3"
},
"keywords": [
"svg",
"png",
"graphics",
"images"
],
"author": "Art Longbottom (@artokun)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LetsCodeItLLC/save-svg-as-png-3/issues"
},
"homepage": "https://github.com/LetsCodeItLLC/save-svg-as-png-3",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"requirejs": "^2.3.5",
"tape": "^4.9.0"
}
}