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
| {
| "name": "save-svg-as-png",
| "version": "1.4.5",
| "description": "Convert a browser SVG to PNG or dataUri",
| "main": "lib/saveSvgAsPng.js",
| "scripts": {
| "build": "babel src -d lib",
| "prepublish": "npm run build",
| "test": "node test.js"
| },
| "repository": {
| "type": "git",
| "url": "https://github.com/exupero/saveSvgAsPng"
| },
| "keywords": [
| "svg",
| "png",
| "graphics",
| "images"
| ],
| "author": "Eric Shull",
| "license": "MIT",
| "bugs": {
| "url": "https://github.com/exupero/saveSvgAsPng/issues"
| },
| "homepage": "https://github.com/exupero/saveSvgAsPng",
| "devDependencies": {
| "babel-cli": "^6.26.0",
| "babel-preset-es2015": "^6.24.1",
| "requirejs": "^2.3.5",
| "tape": "^4.9.0"
| }
| }
|
|