├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yaml ├── .gitignore ├── .npmrc ├── license ├── package.json ├── readme.md ├── source ├── index.ts └── test.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/expiry-map/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/expiry-map/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | dist 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/expiry-map/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/expiry-map/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/expiry-map/HEAD/readme.md -------------------------------------------------------------------------------- /source/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/expiry-map/HEAD/source/index.ts -------------------------------------------------------------------------------- /source/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/expiry-map/HEAD/source/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/expiry-map/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamVerschueren/expiry-map/HEAD/tslint.json --------------------------------------------------------------------------------