forked from francismeynard/lambda-s3-archiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 963 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
{
"name": "lambda-s3-archiver",
"version": "1.2.0",
"description": "This nodejs module will read and archive files in AWS S3 bucket using stream, and store the archive file in S3 as well.",
"main": "index.js",
"author": "francismeynard",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francismeynard/lambda-s3-archiver.git"
},
"homepage": "https://github.com/francismeynard/lambda-s3-archiver#readme",
"keywords": [
"aws",
"lambda",
"s3",
"stream",
"streaming",
"archive",
"archiver",
"zip",
"tar"
],
"dependencies": {
"archiver": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3",
"sinon": "^6.3.1",
"aws-sdk": "~2.335.0"
}
}