-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "simple-webp-converter",
"version": "1.0.3",
"description": "A node library for converting .png and .jpg to .webp using webp-converter",
"license": "MIT",
"repository": "https://github.com/vkiss/simple-webp-converter",
"author": "Vinicius Kiss <contato@kiss.dev.br> (https://kiss.dev.br/)",
"bin": "./bin/simple-webp-converter.js",
"main": "./lib/index.js",
"files": [
"bin",
"lib"
],
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged"
},
"keywords": [
"webpconverter",
"webp-converter",
"webp",
"image",
"convert"
],
"bugs": {
"url": "https://github.com/vkiss/simple-webp-converter/issues"
},
"homepage": "https://github.com/vkiss/simple-webp-converter#readme",
"dependencies": {
"chalk": "4.1.2",
"cosmiconfig": "^7.0.1",
"glob": "^8.0.3",
"webp-converter": "^2.3.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"eslint": "^8.13.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.0"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}