forked from yuvraj2112/s3-uploader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 808 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
{
"name": "@tagmango/s3-uploader",
"version": "1.0.0",
"description": "Package to upload compressed files to AWS S3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuvraj2112/s3-uploader.git"
},
"keywords": [
"s3",
"aws",
"file",
"upload",
"pako",
"compressed",
"chunks",
"form",
"multipart",
"stream"
],
"author": "yuvraj2112@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/yuvraj2112/s3-uploader/issues"
},
"homepage": "https://github.com/yuvraj2112/s3-uploader#readme",
"dependencies": {
"aws-sdk": "^2.825.0",
"busboy": "^0.3.1",
"pako": "^1.0.11"
},
"devDependencies": {}
}