-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "s3-replicator",
"version": "1.0.0",
"description": "Replicates S3 objects to configured buckets",
"main": "src/index.js",
"scripts": {
"build": "node_modules/gulp/bin/gulp.js",
"package": "aws cloudformation package --template-file template.yml --output-template-file packaged-template.yml --s3-bucket $CODE_BUCKET",
"deploy": "aws cloudformation deploy --template-file packaged-template.yml --capabilities CAPABILITY_IAM --stack-name dev-s3-replicator-$USER --parameter-overrides destBuckets=$DEST_BUCKETS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanchiu/s3-replicator.git"
},
"keywords": [
"Serverless",
"Lambda",
"S3",
"copy",
"cross region"
],
"author": "Evan Chiu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanchiu/s3-replicator/issues"
},
"homepage": "https://github.com/evanchiu/s3-replicator#readme",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-jshint": "^2.0.4",
"gulp-zip": "^4.0.0",
"jshint": "^2.9.5"
}
}