├── .gitignore ├── LICENSE ├── README.md ├── generate.sh ├── maps ├── ne_110m_admin_0_countries_clean.json ├── ne_110m_admin_0_countries_lakes_clean.json └── ne_110m_admin_0_countries_lakes_wo_antarctica.json └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melalj/topojson-map-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melalj/topojson-map-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melalj/topojson-map-generator/HEAD/README.md -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melalj/topojson-map-generator/HEAD/generate.sh -------------------------------------------------------------------------------- /maps/ne_110m_admin_0_countries_clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melalj/topojson-map-generator/HEAD/maps/ne_110m_admin_0_countries_clean.json -------------------------------------------------------------------------------- /maps/ne_110m_admin_0_countries_lakes_clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melalj/topojson-map-generator/HEAD/maps/ne_110m_admin_0_countries_lakes_clean.json -------------------------------------------------------------------------------- /maps/ne_110m_admin_0_countries_lakes_wo_antarctica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melalj/topojson-map-generator/HEAD/maps/ne_110m_admin_0_countries_lakes_wo_antarctica.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melalj/topojson-map-generator/HEAD/package.json --------------------------------------------------------------------------------