-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (43 loc) · 919 Bytes
/
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
{
"name": "imgcmp",
"version": "1.1.5",
"description": "tool for image compression",
"main": "index.js",
"scripts": {
"lint": "eslint ."
},
"bin": {
"imgcmp": "bin/imgcmp.js"
},
"repository": "https://github.com/buddy-works/imgcmp",
"bugs": "https://github.com/buddy-works/imgcmp/issues",
"author": "Buddy Team",
"license": "MIT",
"keywords": [
"minify",
"compress",
"image",
"images",
"jpeg",
"jpg",
"png",
"gif",
"svg"
],
"dependencies": {
"async": "^3.1.0",
"colors": "^1.3.3",
"commander": "^2.20.0",
"fs-extra": "^8.1.0",
"imagemin": "^7.0.0",
"imagemin-gifsicle": "^6.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-svgo": "^7.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2"
}
}