-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 KB
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
{
"name": "webimgo",
"version": "1.1.2",
"description": "Batch image resizing and optimisation CLI tool",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"image optimisation",
"image compression",
"batch",
"terminal",
"MozJPEG",
"cli",
"PNG compression",
"JPG compression",
"utility",
"Image width resize"
],
"author": "Sharun John",
"license": "MIT",
"dependencies": {
"ansi-escapes": "^4.3.1",
"chalk": "^4.0.0",
"clear": "^0.1.0",
"cli-progress": "^3.8.0",
"cli-spinner": "^0.2.10",
"colors": "^1.4.0",
"figlet": "^1.3.0",
"image-size": "^0.8.3",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"sharp": "^0.25.2",
"yargs": "^15.3.1"
},
"homepage": "https://github.com/shaan07/webimgo",
"bugs": "https://github.com/shaan07/webimgo/issues",
"repository": {
"type": "git",
"url": "https://github.com/shaan07/webimgo"
},
"engines": {
"node": ">=7.6"
},
"bin": {
"webimgo": "./index.js"
}
}