-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 874 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
{
"name": "webp-middleware",
"version": "0.4.0",
"description": "Generates and delivers JPG-, PNG- and TIFF-images on the fly as WebP-images if the client supports that format.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jannick Garthen",
"license": "MIT",
"dependencies": {
"cwebp-bin": "^5.0.0",
"mime": "^2.4.0",
"mkdirp": "^0.5.1",
"vary": "^1.1.2"
},
"devDependencies": {
"compression": "^1.7.4",
"express": "^4.16.4"
},
"repository": {
"type": "git",
"url": "git://github.com/garthenweb/webp-middleware"
},
"bugs": {
"url": "https://github.com/garthenweb/webp-middleware/issues"
},
"keywords": [
"webp",
"express",
"middleware",
"compression",
"compress",
"img",
"image",
"optimize",
"minify"
]
}