-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 908 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
{
"name": "gulp-dwebp",
"version": "1.0.2",
"description": "Convert WebP images to PNG with gulp task.",
"bugs": {
"url": "https://github.com/1000ch/gulp-dwebp/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/1000ch/gulp-dwebp.git"
},
"license": "MIT",
"author": {
"name": "Shogo Sensui",
"email": "shogosensui@gmail.com",
"web": "https://github.com/1000ch"
},
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "xo && ava --timeout=60s"
},
"xo": {
"space": 2
},
"dependencies": {
"dwebp-bin": "^2.0.1",
"exec-buffer": "^3.2.0",
"plugin-error": "^1.0.1",
"replace-ext": "^2.0.0",
"through2": "^4.0.2"
},
"devDependencies": {
"ava": "^3.15.0",
"is-png": "^3.0.0",
"p-event": "^5.0.1",
"vinyl": "^2.2.1",
"xo": "^0.45.0"
},
"engines": {
"node": ">=12.20"
}
}