-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
61 lines (61 loc) · 1.43 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
{
"name": "image-resizer",
"version": "1.7.0",
"description": "On-the-fly image resizing and optimization using node and sharp (libvips). Heroku ready!",
"main": "index.js",
"scripts": {
"test": "gulp test"
},
"keywords": [
"image",
"resize",
"node",
"sharp",
"libvips",
"heroku",
"optimization"
],
"author": "James Nicol <james.andrew.nicol@gmail.com> (https://github.com/jimmynicol)",
"license": "MIT",
"repository": "git://github.com/jimmynicol/image-resizer",
"bin": {
"image-resizer": "./bin/image_resizer.js"
},
"engines": {
"node": "0.12.x"
},
"dependencies": {
"aws-sdk": "~2.0.0-rc9",
"chalk": "^1.1.3",
"commander": "^2.2.0",
"concat-stream": "~1.4.5",
"errorhandler": "^1.0.1",
"express": "^4.9.7",
"glob": "^7.1.1",
"image-type": "^2.0.2",
"lodash": "~2.4.1",
"map-stream": "~0.1.0",
"mkdirp": "^0.5.0",
"morgan": "^1.7.0",
"request": "^2.81.0",
"sharp": "^0.16.0",
"twit": "~1.1.15"
},
"devDependencies": {
"chai": "~1.9.0",
"connect-livereload": "~0.3.2",
"dotenv": "~0.2.8",
"ejs": "~1.0.0",
"gulp": "^3.9.1",
"gulp-bump": "^0.1.8",
"gulp-jshint": "^2.0.4",
"gulp-mocha": "^4.3.0",
"gulp-nodemon": "~1.0.0",
"gulp-util": "~2.2.14",
"jshint": "^2.9.4",
"jshint-stylish": "~0.1.5",
"sandboxed-module": "^1.0.0",
"sinon": "~1.8.2",
"sinon-chai": "~2.5.0"
}
}