From cf7e48de52948c07f8ddc6efdc1c649914fb781e Mon Sep 17 00:00:00 2001 From: Cyrille Date: Wed, 8 May 2019 10:52:09 +0100 Subject: [PATCH] Updated README.md and created package.json --- README.md | 12 ++++++++++++ package.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 package.json diff --git a/README.md b/README.md index b0b2e5a..742f6fa 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,14 @@ # greenlock-storage-s3 S3 backed storage strategy for greenlock-express.js (and greenlock.js) + +## Requirements + +- AWS Account +- S3 Bucket +- Access to S3 Bucket via the AWS CLI (accessKeyId, secretAccessKey) + +For more information see https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-access-control.html + +## License + +ISC \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..f60d9ec --- /dev/null +++ b/package.json @@ -0,0 +1,28 @@ +{ + "name": "greenlock-storage-s3", + "version": "1.0.0", + "description": "S3 backed storage strategy for greenlock-express.js (and greenlock.js)", + "main": "index.js", + "scripts": { + "test": "node ./test.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/cderche/greenlock-storage-s3.git" + }, + "keywords": [ + "aws", + "s3", + "greenlock", + "greenlock-express", + "express.js", + "storage", + "letsencrypt" + ], + "author": "Cyrille Derche", + "license": "ISC", + "bugs": { + "url": "https://github.com/cderche/greenlock-storage-s3/issues" + }, + "homepage": "https://github.com/cderche/greenlock-storage-s3#readme" +}