-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "gulp-image-optimization",
"version": "0.1.3",
"description": "Minify PNG, JPEG and GIF images. this is based on https://github.com/sindresorhus/gulp-imagemin with stream-limit implementation",
"license": "MIT",
"repository": "firetix/gulp-image-optimization",
"author": {
"name": "Mohamed Rachidi",
"email": "[email protected]"
},
"engines": {
"node": "<6.0.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"imagemin",
"image",
"img",
"picture",
"photo",
"minify",
"minifier",
"compress",
"png",
"jpg",
"jpeg",
"gif"
],
"dependencies": {
"gulp-util": "~3.0.8",
"imagemin": "~5.3.1",
"graceful-fs": "~4.1.11",
"filesize": "~3.5.11",
"temp-write": "~3.4.0",
"map-stream-limit": "~1.1.0",
"jpegtran-bin": "^3.2.0"
},
"devDependencies": {
"mocha": "*"
}
}