├── .gitignore ├── .jshintrc ├── .travis.yml ├── README.md ├── data ├── afghanistan.json ├── albania.json ├── algeria.json ├── american_samoa.json ├── angola.json ├── anguilla.json ├── antarctica.json ├── antigua_and_barbuda.json ├── argentina.json ├── armenia.json ├── aruba.json ├── ashmore_and_cartier_island.json ├── australia.json ├── austria.json ├── azerbaijan.json ├── bahamas.json ├── bahrain.json ├── bangladesh.json ├── barbados.json ├── belarus.json ├── belgium.json ├── belize.json ├── benin.json ├── bermuda.json ├── bhutan.json ├── bolivia.json ├── bosnia_and_herzegovina.json ├── botswana.json ├── brazil.json ├── british_virgin_islands.json ├── brunei.json ├── bulgaria.json ├── burkina_faso.json ├── burma.json ├── burundi.json ├── cambodia.json ├── cameroon.json ├── canada.json ├── cape_verde.json ├── cayman_islands.json ├── central_african_republic.json ├── chad.json ├── chile.json ├── china.json ├── christmas_island.json ├── clipperton_island.json ├── cocos_keeling_islands.json ├── colombia.json ├── comoros.json ├── congo_democratic_republic_of_the.json ├── congo_republic_of_the.json ├── cook_islands.json ├── costa_rica.json ├── cote_d_ivoire.json ├── croatia.json ├── cuba.json ├── cyprus.json ├── czeck_republic.json ├── denmark.json ├── djibouti.json ├── dominica.json ├── dominican_republic.json ├── ecuador.json ├── egypt.json ├── el_salvador.json ├── equatorial_guinea.json ├── eritrea.json ├── estonia.json ├── ethiopia.json ├── europa_island.json ├── falkland_islands_islas_malvinas.json ├── faroe_islands.json ├── fiji.json ├── finland.json ├── france.json ├── french_guiana.json ├── french_polynesia.json ├── french_southern_and_antarctic_lands.json ├── gabon.json ├── gambia_the.json ├── gaza_strip.json ├── georgia.json ├── germany.json ├── ghana.json ├── gibraltar.json ├── glorioso_islands.json ├── greece.json ├── greenland.json ├── grenada.json ├── guadeloupe.json ├── guam.json ├── guatemala.json ├── guernsey.json ├── guinea.json ├── guinea_bissau.json ├── guyana.json ├── haiti.json ├── heard_island_and_mc_donald_islands.json ├── holy_see_vatican_city.json ├── honduras.json ├── hong_kong.json ├── howland_island.json ├── hungary.json ├── iceland.json ├── index.js ├── india.json ├── indonesia.json ├── iran.json ├── iraq.json ├── ireland.json ├── ireland_northern.json ├── israel.json ├── italy.json ├── jamaica.json ├── jan_mayen.json ├── japan.json ├── jarvis_island.json ├── jersey.json ├── johnston_atoll.json ├── jordan.json ├── juan_de_nova_island.json ├── kazakhstan.json ├── kenya.json ├── kiribati.json ├── korea_north.json ├── korea_south.json ├── kuwait.json ├── kyrgyzstan.json ├── laos.json ├── latvia.json ├── lebanon.json ├── lesotho.json ├── liberia.json ├── libya.json ├── liechtenstein.json ├── lithuania.json ├── luxembourg.json ├── macau.json ├── macedonia_former_yugoslav_republic_of.json ├── madagascar.json ├── malawi.json ├── malaysia.json ├── maldives.json ├── mali.json ├── malta.json ├── man_isle_of.json ├── marshall_islands.json ├── martinique.json ├── mauritania.json ├── mauritius.json ├── mayotte.json ├── mexico.json ├── micronesia_federated_states_of.json ├── midway_islands.json ├── moldova.json ├── monaco.json ├── mongolia.json ├── montserrat.json ├── morocco.json ├── mozambique.json ├── namibia.json ├── nauru.json ├── nepal.json ├── netherlands.json ├── netherlands_antilles.json ├── new_caledonia.json ├── new_zealand.json ├── nicaragua.json ├── niger.json ├── nigeria.json ├── niue.json ├── norfolk_island.json ├── northern_mariana_islands.json ├── norway.json ├── oman.json ├── pakistan.json ├── palau.json ├── panama.json ├── papua_new_guinea.json ├── paraguay.json ├── peru.json ├── philippines.json ├── pitcaim_islands.json ├── poland.json ├── portugal.json ├── puerto_rico.json ├── qatar.json ├── reunion.json ├── romainia.json ├── russia.json ├── rwanda.json ├── saint_helena.json ├── saint_kitts_and_nevis.json ├── saint_lucia.json ├── saint_pierre_and_miquelon.json ├── saint_vincent_and_the_grenadines.json ├── samoa.json ├── san_marino.json ├── sao_tome_and_principe.json ├── saudi_arabia.json ├── scotland.json ├── senegal.json ├── seychelles.json ├── sierra_leone.json ├── singapore.json ├── slovakia.json ├── slovenia.json ├── solomon_islands.json ├── somalia.json ├── south_africa.json ├── south_georgia_and_south_sandwich_islands.json ├── south_sudan.json ├── spain.json ├── sri_lanka.json ├── sudan.json ├── suriname.json ├── svalbard.json ├── swaziland.json ├── sweden.json ├── switzerland.json ├── syria.json ├── taiwan.json ├── tajikistan.json ├── tanzania.json ├── thailand.json ├── tobago.json ├── toga.json ├── tokelau.json ├── tonga.json ├── trinidad.json ├── tunisia.json ├── turkey.json ├── turkmenistan.json ├── tuvalu.json ├── uganda.json ├── ukraine.json ├── united_arab_emirates.json ├── united_kingdom.json ├── united_states_of_america.json ├── uruguay.json ├── uzbekistan.json ├── vanuatu.json ├── venezuela.json ├── vietnam.json ├── virgin_islands.json ├── wales.json ├── wallis_and_futuna.json ├── west_bank.json ├── western_sahara.json ├── yemen.json ├── zambia.json └── zimbabwe.json ├── index.js ├── lib └── countryjs.js ├── package.json └── test ├── countryjs.test.js ├── data.test.js └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build.js 3 | npm-debug.log 4 | coverage 5 | .DS_STORE 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi": true 3 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/README.md -------------------------------------------------------------------------------- /data/afghanistan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/afghanistan.json -------------------------------------------------------------------------------- /data/albania.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/albania.json -------------------------------------------------------------------------------- /data/algeria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/algeria.json -------------------------------------------------------------------------------- /data/american_samoa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/american_samoa.json -------------------------------------------------------------------------------- /data/angola.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/angola.json -------------------------------------------------------------------------------- /data/anguilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/anguilla.json -------------------------------------------------------------------------------- /data/antarctica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/antarctica.json -------------------------------------------------------------------------------- /data/antigua_and_barbuda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/antigua_and_barbuda.json -------------------------------------------------------------------------------- /data/argentina.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/argentina.json -------------------------------------------------------------------------------- /data/armenia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/armenia.json -------------------------------------------------------------------------------- /data/aruba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/aruba.json -------------------------------------------------------------------------------- /data/ashmore_and_cartier_island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/ashmore_and_cartier_island.json -------------------------------------------------------------------------------- /data/australia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/australia.json -------------------------------------------------------------------------------- /data/austria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/austria.json -------------------------------------------------------------------------------- /data/azerbaijan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/azerbaijan.json -------------------------------------------------------------------------------- /data/bahamas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/bahamas.json -------------------------------------------------------------------------------- /data/bahrain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/bahrain.json -------------------------------------------------------------------------------- /data/bangladesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/bangladesh.json -------------------------------------------------------------------------------- /data/barbados.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/barbados.json -------------------------------------------------------------------------------- /data/belarus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/belarus.json -------------------------------------------------------------------------------- /data/belgium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/belgium.json -------------------------------------------------------------------------------- /data/belize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/belize.json -------------------------------------------------------------------------------- /data/benin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/benin.json -------------------------------------------------------------------------------- /data/bermuda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/bermuda.json -------------------------------------------------------------------------------- /data/bhutan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/bhutan.json -------------------------------------------------------------------------------- /data/bolivia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/bolivia.json -------------------------------------------------------------------------------- /data/bosnia_and_herzegovina.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/bosnia_and_herzegovina.json -------------------------------------------------------------------------------- /data/botswana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/botswana.json -------------------------------------------------------------------------------- /data/brazil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/brazil.json -------------------------------------------------------------------------------- /data/british_virgin_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/british_virgin_islands.json -------------------------------------------------------------------------------- /data/brunei.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/brunei.json -------------------------------------------------------------------------------- /data/bulgaria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/bulgaria.json -------------------------------------------------------------------------------- /data/burkina_faso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/burkina_faso.json -------------------------------------------------------------------------------- /data/burma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/burma.json -------------------------------------------------------------------------------- /data/burundi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/burundi.json -------------------------------------------------------------------------------- /data/cambodia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/cambodia.json -------------------------------------------------------------------------------- /data/cameroon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/cameroon.json -------------------------------------------------------------------------------- /data/canada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/canada.json -------------------------------------------------------------------------------- /data/cape_verde.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/cape_verde.json -------------------------------------------------------------------------------- /data/cayman_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/cayman_islands.json -------------------------------------------------------------------------------- /data/central_african_republic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/central_african_republic.json -------------------------------------------------------------------------------- /data/chad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/chad.json -------------------------------------------------------------------------------- /data/chile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/chile.json -------------------------------------------------------------------------------- /data/china.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/china.json -------------------------------------------------------------------------------- /data/christmas_island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/christmas_island.json -------------------------------------------------------------------------------- /data/clipperton_island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/clipperton_island.json -------------------------------------------------------------------------------- /data/cocos_keeling_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/cocos_keeling_islands.json -------------------------------------------------------------------------------- /data/colombia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/colombia.json -------------------------------------------------------------------------------- /data/comoros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/comoros.json -------------------------------------------------------------------------------- /data/congo_democratic_republic_of_the.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/congo_democratic_republic_of_the.json -------------------------------------------------------------------------------- /data/congo_republic_of_the.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/congo_republic_of_the.json -------------------------------------------------------------------------------- /data/cook_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/cook_islands.json -------------------------------------------------------------------------------- /data/costa_rica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/costa_rica.json -------------------------------------------------------------------------------- /data/cote_d_ivoire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/cote_d_ivoire.json -------------------------------------------------------------------------------- /data/croatia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/croatia.json -------------------------------------------------------------------------------- /data/cuba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/cuba.json -------------------------------------------------------------------------------- /data/cyprus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/cyprus.json -------------------------------------------------------------------------------- /data/czeck_republic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/czeck_republic.json -------------------------------------------------------------------------------- /data/denmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/denmark.json -------------------------------------------------------------------------------- /data/djibouti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/djibouti.json -------------------------------------------------------------------------------- /data/dominica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/dominica.json -------------------------------------------------------------------------------- /data/dominican_republic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/dominican_republic.json -------------------------------------------------------------------------------- /data/ecuador.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/ecuador.json -------------------------------------------------------------------------------- /data/egypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/egypt.json -------------------------------------------------------------------------------- /data/el_salvador.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/el_salvador.json -------------------------------------------------------------------------------- /data/equatorial_guinea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/equatorial_guinea.json -------------------------------------------------------------------------------- /data/eritrea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/eritrea.json -------------------------------------------------------------------------------- /data/estonia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/estonia.json -------------------------------------------------------------------------------- /data/ethiopia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/ethiopia.json -------------------------------------------------------------------------------- /data/europa_island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/europa_island.json -------------------------------------------------------------------------------- /data/falkland_islands_islas_malvinas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/falkland_islands_islas_malvinas.json -------------------------------------------------------------------------------- /data/faroe_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/faroe_islands.json -------------------------------------------------------------------------------- /data/fiji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/fiji.json -------------------------------------------------------------------------------- /data/finland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/finland.json -------------------------------------------------------------------------------- /data/france.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/france.json -------------------------------------------------------------------------------- /data/french_guiana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/french_guiana.json -------------------------------------------------------------------------------- /data/french_polynesia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/french_polynesia.json -------------------------------------------------------------------------------- /data/french_southern_and_antarctic_lands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/french_southern_and_antarctic_lands.json -------------------------------------------------------------------------------- /data/gabon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/gabon.json -------------------------------------------------------------------------------- /data/gambia_the.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/gambia_the.json -------------------------------------------------------------------------------- /data/gaza_strip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/gaza_strip.json -------------------------------------------------------------------------------- /data/georgia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/georgia.json -------------------------------------------------------------------------------- /data/germany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/germany.json -------------------------------------------------------------------------------- /data/ghana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/ghana.json -------------------------------------------------------------------------------- /data/gibraltar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/gibraltar.json -------------------------------------------------------------------------------- /data/glorioso_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/glorioso_islands.json -------------------------------------------------------------------------------- /data/greece.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/greece.json -------------------------------------------------------------------------------- /data/greenland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/greenland.json -------------------------------------------------------------------------------- /data/grenada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/grenada.json -------------------------------------------------------------------------------- /data/guadeloupe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/guadeloupe.json -------------------------------------------------------------------------------- /data/guam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/guam.json -------------------------------------------------------------------------------- /data/guatemala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/guatemala.json -------------------------------------------------------------------------------- /data/guernsey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/guernsey.json -------------------------------------------------------------------------------- /data/guinea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/guinea.json -------------------------------------------------------------------------------- /data/guinea_bissau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/guinea_bissau.json -------------------------------------------------------------------------------- /data/guyana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/guyana.json -------------------------------------------------------------------------------- /data/haiti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/haiti.json -------------------------------------------------------------------------------- /data/heard_island_and_mc_donald_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/heard_island_and_mc_donald_islands.json -------------------------------------------------------------------------------- /data/holy_see_vatican_city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/holy_see_vatican_city.json -------------------------------------------------------------------------------- /data/honduras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/honduras.json -------------------------------------------------------------------------------- /data/hong_kong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/hong_kong.json -------------------------------------------------------------------------------- /data/howland_island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/howland_island.json -------------------------------------------------------------------------------- /data/hungary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/hungary.json -------------------------------------------------------------------------------- /data/iceland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/iceland.json -------------------------------------------------------------------------------- /data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/index.js -------------------------------------------------------------------------------- /data/india.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/india.json -------------------------------------------------------------------------------- /data/indonesia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/indonesia.json -------------------------------------------------------------------------------- /data/iran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/iran.json -------------------------------------------------------------------------------- /data/iraq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/iraq.json -------------------------------------------------------------------------------- /data/ireland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/ireland.json -------------------------------------------------------------------------------- /data/ireland_northern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/ireland_northern.json -------------------------------------------------------------------------------- /data/israel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/israel.json -------------------------------------------------------------------------------- /data/italy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/italy.json -------------------------------------------------------------------------------- /data/jamaica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/jamaica.json -------------------------------------------------------------------------------- /data/jan_mayen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/jan_mayen.json -------------------------------------------------------------------------------- /data/japan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/japan.json -------------------------------------------------------------------------------- /data/jarvis_island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/jarvis_island.json -------------------------------------------------------------------------------- /data/jersey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/jersey.json -------------------------------------------------------------------------------- /data/johnston_atoll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/johnston_atoll.json -------------------------------------------------------------------------------- /data/jordan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/jordan.json -------------------------------------------------------------------------------- /data/juan_de_nova_island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/juan_de_nova_island.json -------------------------------------------------------------------------------- /data/kazakhstan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/kazakhstan.json -------------------------------------------------------------------------------- /data/kenya.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/kenya.json -------------------------------------------------------------------------------- /data/kiribati.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/kiribati.json -------------------------------------------------------------------------------- /data/korea_north.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/korea_north.json -------------------------------------------------------------------------------- /data/korea_south.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/korea_south.json -------------------------------------------------------------------------------- /data/kuwait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/kuwait.json -------------------------------------------------------------------------------- /data/kyrgyzstan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/kyrgyzstan.json -------------------------------------------------------------------------------- /data/laos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/laos.json -------------------------------------------------------------------------------- /data/latvia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/latvia.json -------------------------------------------------------------------------------- /data/lebanon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/lebanon.json -------------------------------------------------------------------------------- /data/lesotho.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/lesotho.json -------------------------------------------------------------------------------- /data/liberia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/liberia.json -------------------------------------------------------------------------------- /data/libya.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/libya.json -------------------------------------------------------------------------------- /data/liechtenstein.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/liechtenstein.json -------------------------------------------------------------------------------- /data/lithuania.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/lithuania.json -------------------------------------------------------------------------------- /data/luxembourg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/luxembourg.json -------------------------------------------------------------------------------- /data/macau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/macau.json -------------------------------------------------------------------------------- /data/macedonia_former_yugoslav_republic_of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/macedonia_former_yugoslav_republic_of.json -------------------------------------------------------------------------------- /data/madagascar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/madagascar.json -------------------------------------------------------------------------------- /data/malawi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/malawi.json -------------------------------------------------------------------------------- /data/malaysia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/malaysia.json -------------------------------------------------------------------------------- /data/maldives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/maldives.json -------------------------------------------------------------------------------- /data/mali.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/mali.json -------------------------------------------------------------------------------- /data/malta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/malta.json -------------------------------------------------------------------------------- /data/man_isle_of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/man_isle_of.json -------------------------------------------------------------------------------- /data/marshall_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/marshall_islands.json -------------------------------------------------------------------------------- /data/martinique.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/martinique.json -------------------------------------------------------------------------------- /data/mauritania.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/mauritania.json -------------------------------------------------------------------------------- /data/mauritius.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/mauritius.json -------------------------------------------------------------------------------- /data/mayotte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/mayotte.json -------------------------------------------------------------------------------- /data/mexico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/mexico.json -------------------------------------------------------------------------------- /data/micronesia_federated_states_of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/micronesia_federated_states_of.json -------------------------------------------------------------------------------- /data/midway_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/midway_islands.json -------------------------------------------------------------------------------- /data/moldova.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/moldova.json -------------------------------------------------------------------------------- /data/monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/monaco.json -------------------------------------------------------------------------------- /data/mongolia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/mongolia.json -------------------------------------------------------------------------------- /data/montserrat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/montserrat.json -------------------------------------------------------------------------------- /data/morocco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/morocco.json -------------------------------------------------------------------------------- /data/mozambique.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/mozambique.json -------------------------------------------------------------------------------- /data/namibia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/namibia.json -------------------------------------------------------------------------------- /data/nauru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/nauru.json -------------------------------------------------------------------------------- /data/nepal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/nepal.json -------------------------------------------------------------------------------- /data/netherlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/netherlands.json -------------------------------------------------------------------------------- /data/netherlands_antilles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/netherlands_antilles.json -------------------------------------------------------------------------------- /data/new_caledonia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/new_caledonia.json -------------------------------------------------------------------------------- /data/new_zealand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/new_zealand.json -------------------------------------------------------------------------------- /data/nicaragua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/nicaragua.json -------------------------------------------------------------------------------- /data/niger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/niger.json -------------------------------------------------------------------------------- /data/nigeria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/nigeria.json -------------------------------------------------------------------------------- /data/niue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/niue.json -------------------------------------------------------------------------------- /data/norfolk_island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/norfolk_island.json -------------------------------------------------------------------------------- /data/northern_mariana_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/northern_mariana_islands.json -------------------------------------------------------------------------------- /data/norway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/norway.json -------------------------------------------------------------------------------- /data/oman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/oman.json -------------------------------------------------------------------------------- /data/pakistan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/pakistan.json -------------------------------------------------------------------------------- /data/palau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/palau.json -------------------------------------------------------------------------------- /data/panama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/panama.json -------------------------------------------------------------------------------- /data/papua_new_guinea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/papua_new_guinea.json -------------------------------------------------------------------------------- /data/paraguay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/paraguay.json -------------------------------------------------------------------------------- /data/peru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/peru.json -------------------------------------------------------------------------------- /data/philippines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/philippines.json -------------------------------------------------------------------------------- /data/pitcaim_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/pitcaim_islands.json -------------------------------------------------------------------------------- /data/poland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/poland.json -------------------------------------------------------------------------------- /data/portugal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/portugal.json -------------------------------------------------------------------------------- /data/puerto_rico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/puerto_rico.json -------------------------------------------------------------------------------- /data/qatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/qatar.json -------------------------------------------------------------------------------- /data/reunion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/reunion.json -------------------------------------------------------------------------------- /data/romainia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/romainia.json -------------------------------------------------------------------------------- /data/russia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/russia.json -------------------------------------------------------------------------------- /data/rwanda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/rwanda.json -------------------------------------------------------------------------------- /data/saint_helena.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/saint_helena.json -------------------------------------------------------------------------------- /data/saint_kitts_and_nevis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/saint_kitts_and_nevis.json -------------------------------------------------------------------------------- /data/saint_lucia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/saint_lucia.json -------------------------------------------------------------------------------- /data/saint_pierre_and_miquelon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/saint_pierre_and_miquelon.json -------------------------------------------------------------------------------- /data/saint_vincent_and_the_grenadines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/saint_vincent_and_the_grenadines.json -------------------------------------------------------------------------------- /data/samoa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/samoa.json -------------------------------------------------------------------------------- /data/san_marino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/san_marino.json -------------------------------------------------------------------------------- /data/sao_tome_and_principe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/sao_tome_and_principe.json -------------------------------------------------------------------------------- /data/saudi_arabia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/saudi_arabia.json -------------------------------------------------------------------------------- /data/scotland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/scotland.json -------------------------------------------------------------------------------- /data/senegal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/senegal.json -------------------------------------------------------------------------------- /data/seychelles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/seychelles.json -------------------------------------------------------------------------------- /data/sierra_leone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/sierra_leone.json -------------------------------------------------------------------------------- /data/singapore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/singapore.json -------------------------------------------------------------------------------- /data/slovakia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/slovakia.json -------------------------------------------------------------------------------- /data/slovenia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/slovenia.json -------------------------------------------------------------------------------- /data/solomon_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/solomon_islands.json -------------------------------------------------------------------------------- /data/somalia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/somalia.json -------------------------------------------------------------------------------- /data/south_africa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/south_africa.json -------------------------------------------------------------------------------- /data/south_georgia_and_south_sandwich_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/south_georgia_and_south_sandwich_islands.json -------------------------------------------------------------------------------- /data/south_sudan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/south_sudan.json -------------------------------------------------------------------------------- /data/spain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/spain.json -------------------------------------------------------------------------------- /data/sri_lanka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/sri_lanka.json -------------------------------------------------------------------------------- /data/sudan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/sudan.json -------------------------------------------------------------------------------- /data/suriname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/suriname.json -------------------------------------------------------------------------------- /data/svalbard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/svalbard.json -------------------------------------------------------------------------------- /data/swaziland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/swaziland.json -------------------------------------------------------------------------------- /data/sweden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/sweden.json -------------------------------------------------------------------------------- /data/switzerland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/switzerland.json -------------------------------------------------------------------------------- /data/syria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/syria.json -------------------------------------------------------------------------------- /data/taiwan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/taiwan.json -------------------------------------------------------------------------------- /data/tajikistan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/tajikistan.json -------------------------------------------------------------------------------- /data/tanzania.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/tanzania.json -------------------------------------------------------------------------------- /data/thailand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/thailand.json -------------------------------------------------------------------------------- /data/tobago.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/tobago.json -------------------------------------------------------------------------------- /data/toga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/toga.json -------------------------------------------------------------------------------- /data/tokelau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/tokelau.json -------------------------------------------------------------------------------- /data/tonga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/tonga.json -------------------------------------------------------------------------------- /data/trinidad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/trinidad.json -------------------------------------------------------------------------------- /data/tunisia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/tunisia.json -------------------------------------------------------------------------------- /data/turkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/turkey.json -------------------------------------------------------------------------------- /data/turkmenistan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/turkmenistan.json -------------------------------------------------------------------------------- /data/tuvalu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/tuvalu.json -------------------------------------------------------------------------------- /data/uganda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/uganda.json -------------------------------------------------------------------------------- /data/ukraine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/ukraine.json -------------------------------------------------------------------------------- /data/united_arab_emirates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/united_arab_emirates.json -------------------------------------------------------------------------------- /data/united_kingdom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/united_kingdom.json -------------------------------------------------------------------------------- /data/united_states_of_america.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/united_states_of_america.json -------------------------------------------------------------------------------- /data/uruguay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/uruguay.json -------------------------------------------------------------------------------- /data/uzbekistan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/uzbekistan.json -------------------------------------------------------------------------------- /data/vanuatu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/vanuatu.json -------------------------------------------------------------------------------- /data/venezuela.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/venezuela.json -------------------------------------------------------------------------------- /data/vietnam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/vietnam.json -------------------------------------------------------------------------------- /data/virgin_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/virgin_islands.json -------------------------------------------------------------------------------- /data/wales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/wales.json -------------------------------------------------------------------------------- /data/wallis_and_futuna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/wallis_and_futuna.json -------------------------------------------------------------------------------- /data/west_bank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/west_bank.json -------------------------------------------------------------------------------- /data/western_sahara.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/western_sahara.json -------------------------------------------------------------------------------- /data/yemen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/yemen.json -------------------------------------------------------------------------------- /data/zambia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/zambia.json -------------------------------------------------------------------------------- /data/zimbabwe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/data/zimbabwe.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/index.js -------------------------------------------------------------------------------- /lib/countryjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/lib/countryjs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/package.json -------------------------------------------------------------------------------- /test/countryjs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/test/countryjs.test.js -------------------------------------------------------------------------------- /test/data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therebelrobot/countryjs/HEAD/test/data.test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --growl 3 | --reporter=nyan --------------------------------------------------------------------------------