-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1020 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
45
46
{
"name": "@crazyfactory/jpeg-compression-cli",
"description": "a cli tool to compresses jpeg encoded files using google guetzli",
"main": "bin/index.js",
"scripts": {
"test": "xo",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"jpgc": "./bin/index.js"
},
"keywords": [
"jpg",
"jpeg",
"compression",
"guetzli",
"images"
],
"repository": {
"type": "git",
"url": "https://github.com/crazyfactory/jpeg-compression-cli.git"
},
"author": "Wolf T. Mathes",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"fs-extra": "^3.0.1",
"guetzli": "^1.0.1",
"image-type": "^2.1.0",
"read-chunk": "^2.0.0",
"throat": "^3.1.0",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"semantic-release": "^6.3.6",
"xo": "^0.18.2"
},
"xo": {
"space": 4,
"rules": {
"import/no-unresolved": 0,
"operator-linebreak": 0
}
}
}