forked from dbushell/grunt-svg2png
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (62 loc) · 1.47 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
{
"name": "grunt-svg2png",
"description": "Grunt plugin to rasterize SVG to PNG images using PhantomJS",
"version": "0.2.7",
"author": {
"name": "David Bushell",
"email": "[email protected]",
"url": "http://dbushell.com/"
},
"homepage": "https://github.com/dbushell/grunt-svg2png",
"repository": {
"type": "git",
"url": "git://github.com/dbushell/grunt-svg2png.git"
},
"bugs": {
"url": "https://github.com/dbushell/grunt-svg2png/issues"
},
"main": "Gruntfile.js",
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"phantomjs": "~1.9.0"
},
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-jshint": "~0.2.0",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-clean": "~0.4.0",
"pngjs": "~0.4.0"
},
"peerDependencies": {
"grunt": "~0.4.0"
},
"keywords": [
"svg",
"png",
"image",
"rasterize",
"rasterise",
"grunt",
"gruntjs",
"gruntplugin",
"phantom",
"phantomjs"
],
"contributors": [
{
"name": "David Bushell",
"url": "http://dbushell.com/"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/dbushell/grunt-svg2png/master/LICENSE.txt"
}
]
}