{
  "name": "country-to-currency",
  "version": "2.0.2",
  "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"
  ],
  "devDependencies": {
    "country-list": "latest",
    "currency-codes": "latest",
    "microbundle": "^0.15.1"
  },
  "files": [
    "index.*"
  ],
  "type": "module",
  "source": "index.ts",
  "types": "index.d.ts",
  "main": "index.cjs",
  "exports": {
    ".": {
      "import": "./index.esm.js",
      "require": "./index.cjs",
      "default": "./index.js"
    }
  },
  "module": "index.esm.js",
  "unpkg": "index.umd.js",
  "browser": "index.umd.js",
  "umd:main": "index.umd.js",
  "scripts": {
    "test": "echo \"No tests\"",
    "gen": "node generate.js",
    "build": "microbundle --no-sourcemap",
    "all": "pnpm run gen && pnpm run build",
    "preversion": "pnpm run all",
    "postversion": "echo \"Don't forget to push the tags and publish the version.\""
  }
}