forked from imagemin/imagemin-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.02 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": "imagemin-cli",
"version": "5.1.0",
"description": "Minify images seamlessly",
"license": "MIT",
"repository": "imagemin/imagemin-cli",
"funding": "https://github.com/imagemin/imagemin-cli?sponsor=1",
"bin": {
"imagemin": "cli.js"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"cli",
"cli-app",
"compress",
"imagemin",
"gif",
"image",
"jpeg",
"jpg",
"minify",
"png",
"svg"
],
"dependencies": {
"arrify": "^2.0.1",
"get-stdin": "^7.0.0",
"imagemin": "^7.0.0",
"lodash.pairs": "^3.0.1",
"meow": "^5.0.0",
"ora": "^4.0.3",
"plur": "^3.0.1",
"strip-indent": "^3.0.0"
},
"devDependencies": {
"ava": "^2.1.0",
"execa": "^3.4.0",
"imagemin-pngquant": "^8.0.0",
"xo": "^0.25.3"
},
"optionalDependencies": {
"imagemin-gifsicle": "^6.0.0",
"imagemin-jpegtran": "^6.0.0",
"imagemin-optipng": "^6.0.0",
"imagemin-svgo": "^7.0.0"
},
"xo": {
"rules": {
"node/process-exit-as-throw": 2
}
}
}