iso-country
Version:
Search for Countries by ISO Codes
45 lines (44 loc) • 1.13 kB
JSON
{
"name": "iso-country",
"version": "3.0.0",
"description": "Search for Countries by ISO Codes",
"scripts": {
"build": "del lib && npm run build:es && npm run build:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:es": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanbradynd05/iso-country"
},
"keywords": [
"ISO3166",
"country",
"country-code",
"country code"
],
"author": "Ryan Brady <ryanbradynd05@gmail.com>",
"license": "MIT",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"lib/"
],
"devDependencies": {
"@babel/core": ">=7.0.0",
"@babel/parser": ">=7.0.0",
"@babel/preset-env": ">=7.0.0",
"@babel/preset-typescript": ">=7.0.0",
"@babel/types": ">=7.0.0",
"@types/jest": ">=26.0.0",
"babel-jest": ">=26.0.0",
"del-cli": ">=4.0.0",
"jest": ">=26.0.0",
"jest-diff": ">=26.0.0",
"pretty-format": ">=26.0.0",
"typescript": ">=3.6.4"
}
}