-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 890 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
{
"name": "framer",
"version": "0.5.4",
"description": "A simple dynamic photo resizing http server intended to be behind an http cache that stores files in S3",
"main": "index.js",
"scripts": {
"test": "jshint *.js --config .jshintrc && mocha test/test*"
},
"repository": {
"type": "git",
"url": "git@github.com:mbrevoort/framer.git"
},
"keywords": [
"image",
"resizing",
"server",
"cache",
"aws",
"amazon",
"s3"
],
"author": "Mike Brevoort",
"license": "MIT",
"dependencies": {
"gm": "~1.9.1",
"knox": "~0.8.2",
"mkdirp": "~0.3.5",
"node-uuid": "~1.4.0",
"multiparty": "~2.1.7",
"batch": "~0.3.2",
"mime": "~1.2.9"
},
"devDependencies": {
"mocha": "~1.10.0",
"request": "~2.21.0",
"buffertools": "~1.1.1",
"jshint": "~2.1.3"
},
"engines": {
"node": ">=0.10.0"
}
}