├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib ├── index.js └── index.spec.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikesouza/serverless-associate-waf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikesouza/serverless-associate-waf/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | test/ 3 | 4 | .editorconfig 5 | .travis.yml 6 | 7 | *.tgz 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikesouza/serverless-associate-waf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikesouza/serverless-associate-waf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikesouza/serverless-associate-waf/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikesouza/serverless-associate-waf/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikesouza/serverless-associate-waf/HEAD/lib/index.spec.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikesouza/serverless-associate-waf/HEAD/package.json --------------------------------------------------------------------------------