forked from sindresorhus/gulp-imagemin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.05 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
{
"name": "gulp-imagemin",
"version": "4.1.0",
"description": "Minify PNG, JPEG, GIF and SVG images",
"license": "MIT",
"repository": "sindresorhus/gulp-imagemin",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"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": "^2.1.0",
"fancy-log": "^1.3.2",
"plugin-error": "^0.1.2",
"imagemin": "^5.3.1",
"plur": "^2.1.2",
"pretty-bytes": "^4.0.2",
"through2-concurrent": "^1.1.1"
},
"devDependencies": {
"ava": "*",
"get-stream": "^3.0.0",
"imagemin-pngquant": "^5.0.1",
"pify": "^3.0.0",
"xo": "*",
"vinyl": "^2.1.0"
},
"optionalDependencies": {
"imagemin-gifsicle": "^5.2.0",
"imagemin-jpegtran": "^5.0.2",
"imagemin-optipng": "^5.2.1",
"imagemin-svgo": "^6.0.0"
}
}