-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 924 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
{
"name": "express-responsive-images",
"version": "1.8.2",
"description": "Server-side scaling and caching of images on-the-fly for Express on Node.js. Adjusting images to client's screen size or scaling by query parameters (e.g. ?w=200). Mobile friendly, reduces bandwidth and saves loading time.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ztomm/express-responsive-images.git"
},
"keywords": [
"responsive",
"images",
"server-side",
"cache",
"express"
],
"author": "Murat Motz <[email protected]> (https://www.kmgt.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ztomm/express-responsive-images/issues"
},
"peerDependencies": {
"express": ">=4.0.0"
},
"dependencies": {
"fs-extra": "^11.2.0",
"image-size": "^1.1.1",
"picocolors": "^1.0.0",
"sharp": "^0.33.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}