├── .babelrc ├── .circleci └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── CODEOWNERS └── pull_request_template.md ├── .gitignore ├── .huskyrc.js ├── .lintstagedrc.js ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── LICENSE ├── Makefile ├── README.md ├── index.js ├── lib ├── __tests__ │ └── logger.test.js └── logger.js ├── package.json └── secret-squirrel.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.huskyrc.js -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/index.js -------------------------------------------------------------------------------- /lib/__tests__/logger.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/lib/__tests__/logger.test.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/lib/logger.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/package.json -------------------------------------------------------------------------------- /secret-squirrel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/lambda-logger/HEAD/secret-squirrel.js --------------------------------------------------------------------------------