├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── index.js └── package.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmnnd/lambda-watchtower/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmnnd/lambda-watchtower/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmnnd/lambda-watchtower/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmnnd/lambda-watchtower/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmnnd/lambda-watchtower/HEAD/package.json --------------------------------------------------------------------------------