-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "s3-rsync",
"version": "1.1.9",
"description": "Sync a local directory to S3, recursively, with files over 5gb.",
"main": "index.js",
"scripts": {
"test": "node test/index.js",
"example": "npm run clear-example && npm run example-bin",
"clear-example": "rm -rf example/remote/some_bucket/*",
"example-server": "node example/server.js",
"example-bin": "bin/s3-rsync -k 123 -s abc -b some_bucket -e localhost -p 4568 -P test/local"
},
"keywords": [],
"author": "David Guttman <[email protected]> (http://davidguttman.com/)",
"license": "MIT",
"dependencies": {
"commander": "^2.9.0",
"human-format": "^0.5.1",
"knox": "^0.9.2",
"knox-mpu": "^0.1.6",
"ls-r": "^0.2.1",
"map-async": "^0.1.1",
"pretty-ms": "^2.1.0",
"progress": "^1.1.8",
"run-parallel": "^1.1.4",
"run-series": "^1.1.4",
"s3-lister": "^0.1.0",
"wildemitter": "^1.2.0"
},
"devDependencies": {
"rimraf": "^2.4.4",
"s3rver": "0.0.12",
"tape": "^4.2.2"
},
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/davidguttman/s3-rsync.git"
},
"bugs": {
"url": "https://github.com/davidguttman/s3-rsync/issues"
},
"homepage": "https://github.com/davidguttman/s3-rsync",
"bin": {
"s3-rsync": "./bin/s3-rsync"
}
}