├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── .gitignore ├── package-lock.json ├── package.json ├── readme.md ├── samconfig.toml ├── src │ └── index.ts ├── template.yaml └── tsconfig.json ├── jest.config.json ├── package.json ├── src ├── __tests__ │ └── index.test.ts ├── index.ts └── lib │ ├── __tests__ │ ├── log-event.test.ts │ └── normalize.test.ts │ ├── cfn-response.ts │ ├── log-event.ts │ └── normalize.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .coverage 2 | node_modules 3 | .idea 4 | /npm-debug.log 5 | .dist 6 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | .sam-packaged.yaml 2 | .aws-sam 3 | -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/example/package.json -------------------------------------------------------------------------------- /example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/example/readme.md -------------------------------------------------------------------------------- /example/samconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/example/samconfig.toml -------------------------------------------------------------------------------- /example/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/example/src/index.ts -------------------------------------------------------------------------------- /example/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/example/template.yaml -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/jest.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/__tests__/log-event.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/src/lib/__tests__/log-event.test.ts -------------------------------------------------------------------------------- /src/lib/__tests__/normalize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/src/lib/__tests__/normalize.test.ts -------------------------------------------------------------------------------- /src/lib/cfn-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/src/lib/cfn-response.ts -------------------------------------------------------------------------------- /src/lib/log-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/src/lib/log-event.ts -------------------------------------------------------------------------------- /src/lib/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/src/lib/normalize.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/By-Nordenfelt-AB/lulo/HEAD/tslint.json --------------------------------------------------------------------------------