UNPKG

country-to-currency

Version:

Map country codes (ISO 3166-1 alpha-2) to their default currency codes (ISO 4217)

58 lines 1.37 kB
{ "name": "country-to-currency", "version": "3.0.1", "description": "Map country codes (ISO 3166-1 alpha-2) to their default currency codes (ISO 4217)", "license": "MIT", "repository": { "type": "git", "url": "git://github.com/thiagodp/country-to-currency.git" }, "homepage": "https://github.com/thiagodp/country-to-currency", "bugs": { "url": "https://github.com/thiagodp/country-to-currency/issues" }, "author": { "name": "Thiago Delgado Pinto", "email": "thiago_dp@yahoo.com.br" }, "keywords": [ "country", "currency", "code", "iso-3166", "iso-4217", "locale", "i18n", "javascript", "typescript", "browser", "node", "deno" ], "type": "module", "source": "./index.ts", "types": "./index.d.ts", "exports": { "default": "./index.js", "module": "./index.js", "types": "./index.d.ts" }, "files": [ "index.js", "index.d.ts" ], "devDependencies": { "country-list": "^2.4.1", "fast-xml-parser": "^5.8.0", "tsdown": "^0.22.2", "typescript": "^6.0.3" }, "scripts": { "test": "echo \"No tests\"", "gen": "node generate.js", "build": "tsdown", "all": "pnpm run gen && pnpm run build", "preversion": "pnpm run all", "postversion": "echo \"Don't forget to push the tags and publish the version.\"" } }