country-flags-svg
Version:
A list of countries with url links to a svg image which you can simply use in your web application
69 lines (68 loc) • 1.4 kB
JSON
{
"name": "country-flags-svg",
"version": "2.0.0-beta.1",
"description": "A list of countries with url links to a svg image which you can simply use in your web application",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist coverage",
"test": "jest",
"test-coverage": "jest --coverage",
"build": "tsup",
"prepare": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronatskiy/country-flags-svg.git"
},
"keywords": [
"country",
"flags",
"svg",
"country-flags"
],
"author": "Roman Onatskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronatskiy/country-flags-svg/issues"
},
"homepage": "https://github.com/ronatskiy/country-flags-svg#readme",
"devDependencies": {
"@types/jest": "29.5.3",
"codecov": "3.8.3",
"coveralls": "3.1.1",
"jest": "29.6.1",
"rimraf": "3.0.2",
"ts-jest": "29.1.1",
"tsup": "7.1.0",
"typescript": "5.1.6"
},
"engines": {
"node": ">=16.0.0"
},
"tsup": {
"dts": true,
"treeshake": true,
"minify": true,
"target": "node16",
"format": [
"cjs",
"esm"
],
"entry": [
"src/index.ts"
],
"clear": true
}
}