├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── package.json ├── src ├── index.ts └── iso-3166.ts ├── tests └── tests.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | package-lock.json 4 | /dist 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tsconfig.json 2 | src 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecrmnn/iso-3166-1/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecrmnn/iso-3166-1/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecrmnn/iso-3166-1/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecrmnn/iso-3166-1/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/iso-3166.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecrmnn/iso-3166-1/HEAD/src/iso-3166.ts -------------------------------------------------------------------------------- /tests/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecrmnn/iso-3166-1/HEAD/tests/tests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecrmnn/iso-3166-1/HEAD/tsconfig.json --------------------------------------------------------------------------------