forked from hoipo/webp-converter-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 981 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
{
"name": "@crazyfactory/webp-converter-cli",
"description": "a cli tool to convert images to webp format.",
"main": "bin/index.js",
"scripts": {
"test": "xo",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"webpc": "./bin/index.js"
},
"keywords": [
"webp",
"convert",
"images",
"clo"
],
"repository": {
"type": "git",
"url": "https://github.com/crazyfactory/webp-converter-cli.git"
},
"author": "Hoipo Cheung",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"cwebp-bin": "^5.1.0",
"fs-extra": "^3.0.1",
"image-type": "^2.1.0",
"read-chunk": "^2.0.0",
"throat": "^3.2.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"semantic-release": "^15.13.19",
"xo": "^0.18.2"
},
"xo": {
"space": 4,
"rules": {
"import/no-unresolved": 0,
"operator-linebreak": 0
}
}
}