├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── circle.yml ├── package.json ├── src └── plugin.js ├── test └── plugin.spec.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | *.log -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | coverage 3 | circle.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstjn/serverless-sqs-alarms-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstjn/serverless-sqs-alarms-plugin/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstjn/serverless-sqs-alarms-plugin/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstjn/serverless-sqs-alarms-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstjn/serverless-sqs-alarms-plugin/HEAD/src/plugin.js -------------------------------------------------------------------------------- /test/plugin.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstjn/serverless-sqs-alarms-plugin/HEAD/test/plugin.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstjn/serverless-sqs-alarms-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------