-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "@ligadigital/image-resizer",
"version": "0.2.1",
"description": "Resize images on the fly",
"license": "MIT",
"author": "LIGADIGITAL AG <[email protected]>",
"main": "lib/server.js",
"bin": {
"image-resizer": "./bin/image-resizer.js"
},
"engines": {
"node" : ">= 4.8.2"
},
"scripts": {
"start": "node bin/image-resizer.js",
"coverage": "istanbul cover _mocha -- -R spec 'test/**/*-spec.js'",
"test": "mocha 'test/**/*-spec.js'"
},
"dependencies": {
"aws-sdk": "~2.309.0",
"bluebird": "~3.5.2",
"docopt": "~0.6.2",
"express": "~4.16.3",
"gifsicle": "~3.0.3",
"gm": "~1.23.1",
"image-size": "~0.6.3",
"image-type": "~3.0.0",
"mime": "~2.3.1",
"mkdirp": "~0.5.1",
"read-chunk": "2.1.0",
"request": "~2.88.0",
"rimraf": "~2.6.2"
},
"devDependencies": {
"get-port": "3.2.0",
"imagemagick": "~0.1.3",
"istanbul": "~0.4.3",
"mocha": "~5.2.0",
"mocha-jshint": "~2.3.1",
"should": "~13.2.3"
}
}