forked from sindresorhus/broccoli-svgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 797 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "broccoli-svgo",
"version": "3.0.0",
"description": "Minify SVG using SVGO",
"license": "MIT",
"repository": "sindresorhus/broccoli-svgo",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "broccoli build temp && mocha"
},
"files": [
"index.js"
],
"keywords": [
"broccoli-plugin",
"svgo",
"svg",
"image",
"img",
"min",
"minify",
"optimize",
"compress"
],
"dependencies": {
"broccoli-filter": "^1.2.2",
"rsvp": "^3.0.4",
"svgo": "^0.6.0"
},
"devDependencies": {
"broccoli": "^0.16.8",
"broccoli-cli": "^1.0.0",
"mocha": "*",
"rimraf": "^2.2.6"
}
}