-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
69 lines (69 loc) · 1.38 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
69
{
"name": "gulp-image",
"version": "6.3.1",
"description": "Optimize PNG, JPG, GIF, SVG images with gulp task.",
"repository": "1000ch/gulp-image",
"author": {
"name": "Shogo Sensui",
"email": "[email protected]",
"web": "https://github.com/1000ch"
},
"license": "MIT",
"type": "module",
"exports": "./index.js",
"files": [
"lib",
"index.js"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "xo && ava"
},
"bugs": {
"url": "https://github.com/1000ch/gulp-image/issues"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"exec-buffer": "^3.2.0",
"fancy-log": "^1.3.3",
"gifsicle": "^6.1.0",
"is-gif": "^4.0.1",
"is-jpg": "^3.0.0",
"is-png": "^3.0.1",
"is-svg": "^4.3.2",
"jpeg-recompress-bin": "^6.0.1",
"mozjpeg": "^8.0.0",
"optipng-bin": "^8.1.0",
"plugin-error": "^1.0.1",
"pngquant-bin": "^7.0.2",
"pretty-bytes": "^5.6.0",
"round10": "^1.0.3",
"svgo": "^2.8.0",
"through2-concurrent": "^2.0.0",
"zopflipng-bin": "^7.1.0"
},
"devDependencies": {
"ava": "^3.15.0",
"p-event": "^5.0.1",
"vinyl": "^2.2.1",
"xo": "^0.47.0"
},
"xo": {
"space": 2
},
"keywords": [
"compress",
"minify",
"optimize",
"image",
"img",
"jpg",
"jpeg",
"png",
"gif",
"svg",
"gulpplugin"
]
}