Updated README.md and created package.json

This commit is contained in:
Cyrille 2019-05-08 10:52:09 +01:00
parent 142aaf7982
commit cf7e48de52
2 changed files with 40 additions and 0 deletions

View File

@ -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

28
package.json Normal file
View File

@ -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"
}