forked from jpmckinney/image-proxy
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 856 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 856 Bytes
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
{
"name": "image-proxy",
"version": "1.1.4",
"description": "A simple image proxy optimized for headshots",
"keywords": [
"image",
"proxy"
],
"homepage": "https://github.com/jpmckinney/image-proxy",
"bugs": "https://github.com/jpmckinney/image-proxy/issues",
"license": "MIT",
"author": "James McKinney",
"main": "./lib/image-proxy",
"bin": "./bin/image-proxy",
"repository": {
"type": "git",
"url": "https://github.com/jpmckinney/image-proxy.git"
},
"scripts": {
"start": "./bin/image-proxy",
"test": "DELAY=100 WHITELIST=localhost mocha"
},
"dependencies": {
"express": "^4.16.1",
"gm": "^1.23.0",
"mime": "^2.0.3"
},
"devDependencies": {
"coveralls": "~2.11",
"istanbul": "0.3.5",
"mocha": "~1",
"supertest": "~0.11"
},
"engines": {
"node": ">=8.0.0"
}
}