├── .gitignore ├── LICENSE ├── README.md ├── dist ├── index.d.ts ├── index.js └── timezones.json ├── package.json ├── src ├── index.ts └── timezones.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/timezones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/dist/timezones.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/timezones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/src/timezones.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omsrivastava/timezones-list/HEAD/yarn.lock --------------------------------------------------------------------------------