-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
66 lines (66 loc) · 1.13 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
{
"name": "imagemin-cli",
"version": "8.0.0",
"description": "Minify images seamlessly",
"license": "MIT",
"repository": "imagemin/imagemin-cli",
"funding": "https://github.com/sponsors/sindresorhus",
"type": "module",
"bin": {
"imagemin": "./cli.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"cli",
"cli-app",
"compress",
"imagemin",
"gif",
"image",
"jpeg",
"jpg",
"minify",
"png",
"svg"
],
"dependencies": {
"arrify": "^3.0.0",
"get-stdin": "^9.0.0",
"imagemin": "^9.0.0",
"lodash.pairs": "^3.0.1",
"meow": "^13.2.0",
"ora": "^8.0.1",
"plur": "^5.1.0",
"strip-indent": "^4.0.0",
"uint8array-extras": "^1.1.0"
},
"devDependencies": {
"ava": "^6.1.2",
"execa": "^8.0.1",
"imagemin-pngquant": "^9.0.2",
"xo": "^0.58.0"
},
"optionalDependencies": {
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1"
},
"ava": {
"workerThreads": false
},
"xo": {
"rules": {
"n/process-exit-as-throw": 2,
"n/no-unsupported-features": "off"
}
}
}