forked from anacronw/multer-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1015 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
43
44
45
46
{
"name": "multer-s3",
"version": "3.0.1",
"description": "Streaming multer storage engine for AWS S3",
"main": "index.js",
"scripts": {
"test": "standard && mocha test/basic.js"
},
"engines": {
"node": ">= 12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badunk/multer-s3.git"
},
"keywords": [
"multer",
"s3",
"amazon",
"aws"
],
"author": "badunk",
"license": "MIT",
"bugs": {
"url": "https://github.com/badunk/multer-s3/issues"
},
"homepage": "https://github.com/badunk/multer-s3#readme",
"dependencies": {
"@aws-sdk/lib-storage": "^3.46.0",
"file-type": "^3.3.0",
"html-comment-regex": "^1.1.2",
"run-parallel": "^1.1.6"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.0.0"
},
"devDependencies": {
"express": "^4.13.1",
"form-data": "^1.0.0-rc3",
"mocha": "^2.2.5",
"multer": "^1.1.0",
"on-finished": "^2.3.0",
"standard": "^5.4.1",
"xtend": "^4.0.1"
}
}