forked from AvianFlu/ncp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 861 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 861 Bytes
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
{
"name": "s3-sync",
"version": "5.1.0",
"author": "Thomas Goorden <tg@eenwereldmetlef.be>",
"description": "Asynchronous recursive file copy to S3 utility and invalidate (update) the associated CloudFront distribution.",
"main": "index.js",
"bin": {
"s3-sync": "./bin/sync"
},
"devDependencies": {
"mocha": "^6.2.0",
"read-dir-files": "0.0.x",
"rimraf": "1.0.x"
},
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/LEFApps/s3-sync.git"
},
"keywords": [
"cli",
"copy",
"s3",
"lambda",
"recursive",
"directory"
],
"license": "MIT",
"engine": {
"node": ">=0.10"
},
"scripts": {
"test": "mocha -R spec"
},
"dependencies": {
"debug": "^4.1.1",
"aws-sdk": "^2.456.0",
"md5-file": "^4.0.0",
"mime-types": "^2.1.24"
}
}