-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
68 lines (68 loc) · 1.2 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
{
"name": "gulp-imagemin",
"version": "9.1.0",
"description": "Minify PNG, JPEG, GIF and SVG images",
"license": "MIT",
"repository": "sindresorhus/gulp-imagemin",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"imagemin",
"image",
"img",
"picture",
"photo",
"minify",
"minifier",
"compress",
"png",
"jpg",
"jpeg",
"gif",
"svg"
],
"dependencies": {
"chalk": "^5.3.0",
"gulp-plugin-extras": "^1.0.0",
"imagemin": "^9.0.0",
"plur": "^5.1.0",
"pretty-bytes": "^6.1.1"
},
"devDependencies": {
"ava": "^6.1.2",
"imagemin-pngquant": "^9.0.2",
"vinyl": "^3.0.0",
"xo": "^0.58.0"
},
"optionalDependencies": {
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1"
},
"peerDependencies": {
"gulp": ">=4"
},
"peerDependenciesMeta": {
"gulp": {
"optional": true
}
}
}