├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── LICENSE.txt ├── README.md ├── code_of_conduct.md ├── events └── aws │ ├── apiGateway.json │ ├── kinesis.json │ ├── s3.json │ ├── scheduled.json │ ├── sns.json │ └── sqs.json ├── lib └── index.js ├── package.json └── tests └── index.js /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | tmp 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/README.md -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /events/aws/apiGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/events/aws/apiGateway.json -------------------------------------------------------------------------------- /events/aws/kinesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/events/aws/kinesis.json -------------------------------------------------------------------------------- /events/aws/s3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/events/aws/s3.json -------------------------------------------------------------------------------- /events/aws/scheduled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/events/aws/scheduled.json -------------------------------------------------------------------------------- /events/aws/sns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/events/aws/sns.json -------------------------------------------------------------------------------- /events/aws/sqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/events/aws/sqs.json -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/package.json -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless/aws-event-mocks/HEAD/tests/index.js --------------------------------------------------------------------------------