-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.16 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
{
"name": "multer-s3-imager",
"version": "2.0.3",
"description": "Imager multer storage engine permit to resize and upload an image to AWS S3",
"main": "index.js",
"scripts": {
"pretest": "./node_modules/jshint/bin/jshint index.js",
"test": "mocha test/bootstrap.spec.js test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimBN/multer-s3-imager.git"
},
"keywords": [
"multer",
"imager",
"image",
"resize",
"graphicsmagick",
"gm",
"imagemagick",
"s3",
"amazon",
"aws"
],
"author": "Alexandre L.",
"engines": {
"node": ">= 0.12.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/SlimBN/multer-s3-imager/issues"
},
"homepage": "https://github.com/SlimBN/multer-s3-imager#readme",
"dependencies": {
"gm": "~1.23.0",
"mime": "^1.6.0",
"s3fs": "~2.5.0"
},
"devDependencies": {
"aws-sdk": "~2.182.0",
"chai": "~4.1.1",
"express": "~5.0.0-alpha.6",
"jshint": "~2.9.4",
"mkdirp": "~0.5.1",
"mocha": "~4.0.0",
"multer": "~1.3.0",
"rimraf": "~2.6.1",
"s3rver": "~1.0.2",
"supertest": "~3.0.0"
}
}