forked from andrewrk/node-s3-client
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1019 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
47
48
49
50
51
52
53
{
"name": "s3",
"version": "4.4.0",
"description": "high level amazon s3 client. upload and download files and directories",
"main": "lib/index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/andrewrk/node-s3-client"
},
"keywords": [
"amazon",
"s3",
"sync",
"folder",
"directory",
"retry",
"limit",
"stream",
"async",
"parallel",
"multipart",
"size"
],
"author": "Andrew Kelley",
"license": "MIT",
"engines": {
"node": ">=0.10.20"
},
"devDependencies": {
"mocha": "~2.0.1",
"ncp": "~1.0.1"
},
"dependencies": {
"aws-sdk": "~2.4.9",
"fd-slicer": "~1.0.0",
"findit2": "~2.2.3",
"graceful-fs": "~4.1.4",
"mime": "~1.2.11",
"mkdirp": "~0.5.0",
"pend": "~1.2.0",
"rimraf": "~2.2.8",
"streamsink": "~1.2.0"
},
"bugs": {
"url": "https://github.com/andrewrk/node-s3-client/issues"
},
"directories": {
"test": "test"
}
}