forked from jimmynicol/image-resizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "image-resizer",
"version": "0.9.0",
"description": "On-the-fly image resizing and optimization using node and graphicsmagick. Heroku ready!",
"main": "index.js",
"scripts": {
"test": "gulp test"
},
"keywords": [
"image",
"resize",
"node",
"graphicsmagick",
"heroku",
"optimization"
],
"author": "James Nicol <[email protected]> (https://github.com/jimmynicol)",
"license": {
"type": "MIT",
"url": "http://github.com/jimmynicol/image-resizer/raw/master/LICENSE"
},
"repository": "git://github.com/jimmynicol/image-resizer",
"bin": {
"image-resizer": "./bin/image_resizer.js"
},
"engines": {
"node": "0.10.28"
},
"dependencies": {
"aws-sdk": "~2.0.0-rc9",
"chalk": "~0.4.0",
"commander": "^2.2.0",
"concat-stream": "~1.4.5",
"errorhandler": "^1.0.1",
"express": "^4.2.0",
"glob": "~3.2.9",
"gm": "~1.14.2",
"imagemin": "~0.4.6",
"knox": "~0.8.9",
"lodash": "~2.4.1",
"map-stream": "~0.1.0",
"mkdirp": "^0.5.0",
"morgan": "^1.0.1",
"request": "~2.34.0",
"static-favicon": "^2.0.0-alpha",
"twit": "~1.1.15"
},
"devDependencies": {
"chai": "~1.9.0",
"connect-livereload": "~0.3.2",
"dotenv": "~0.2.8",
"ejs": "~1.0.0",
"gulp": "^3.6.2",
"gulp-bump": "^0.1.8",
"gulp-jshint": "~1.4.2",
"gulp-mocha": "~0.4.1",
"gulp-nodemon": "~1.0.0",
"gulp-util": "~2.2.14",
"jshint-stylish": "~0.1.5",
"sandboxed-module": "^1.0.0",
"sinon": "~1.8.2",
"sinon-chai": "~2.5.0"
}
}