-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.35 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
47
48
49
50
51
52
{
"name": "webpconvert",
"type": "module",
"version": "3.0.1",
"description": "CLI Converter from png/jpg images to webp",
"exports": "./index.js",
"bin": "./index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "node ./node_modules/eslint/bin/eslint.js .",
"start": "node index.js",
"dev": "node index.js sample-images/",
"test": "jest",
"test:coverage": "yarn test --collectCoverage",
"test:coverage-html": "yarn test:coverage --coverageReporters=html && xdg-open coverage/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/rizqirizqi/webpconvert.git"
},
"keywords": [
"cli",
"converter",
"webp"
],
"author": "Mgs. M. Rizqi Fadhlurrahman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rizqirizqi/webpconvert/issues"
},
"dependencies": {
"gulp": "^4.0.2",
"gulp-imagemin": "^8.0.0",
"gulp-rename": "^2.0.0",
"imagemin": "^8.0.1",
"imagemin-webp": "^8.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"cross-env": "^7.0.3",
"directory-tree": "^3.5.1",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"spawn-command": "^0.0.2-1"
}
}