forked from Gobie/gulp-imagemin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.12 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
{
"name": "gulp-imagemin",
"version": "3.2.0",
"description": "Minify PNG, JPEG, GIF and SVG images",
"license": "MIT",
"repository": "sindresorhus/gulp-imagemin",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"imagemin",
"image",
"img",
"picture",
"photo",
"minify",
"minifier",
"compress",
"png",
"jpg",
"jpeg",
"gif",
"svg"
],
"dependencies": {
"chalk": "^1.0.0",
"gulp-util": "^3.0.0",
"imagemin": "^5.0.0",
"plur": "^2.0.0",
"pretty-bytes": "^4.0.2",
"through2-concurrent": "^1.1.0"
},
"devDependencies": {
"ava": "*",
"get-stream": "^2.1.0",
"imagemin-pngquant": "^5.0.0",
"pify": "^2.3.0",
"xo": "*"
},
"optionalDependencies": {
"imagemin-gifsicle": "^5.0.0",
"imagemin-jpegtran": "5.0.1",
"imagemin-optipng": "^5.1.0",
"imagemin-svgo": "5.2.0"
},
"xo": {
"esnext": true
}
}