{
  "name": "get-flag-svgs",
  "version": "1.0.0",
  "description": "Download flag svgs from flagcdn.com",
  "keywords": [
    "Download flags",
    "flagcdn",
    "svg",
    "iso-3166-1",
    "iso 3166 1",
    "flags",
    "cli"
  ],
  "bugs": {
    "url": "https://github.com/bameyrick/get-flag-svgs/issues"
  },
  "homepage": "https://github.com/bameyrick/get-flag-svgs#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bameyrick/get-flag-svgs.git"
  },
  "author": "Ben Meyrick <bameyrick@gmail.com>",
  "license": "MIT",
  "type": "module",
  "bin": {
    "get-flag-svgs": "./dist/index.js"
  },
  "scripts": {
    "start": "ts-node src/index.ts",
    "test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js  --coverage --maxWorkers=50%",
    "build": "npm run tidy-clean && tsc -p tsconfig.json",
    "lint": "npm run tidy-clean && eslint",
    "tidy-clean": "rimraf dist coverage tmp",
    "pre-commit": "lint-staged",
    "prepare-husky": "npx husky-init",
    "upgrade-interactive": "npm-check --update"
  },
  "lint-staged": {
    "*.ts": [
      "prettier --print-width 140 --single-quote --arrow-parens avoid --trailing-comma es5 --parser typescript --write",
      "eslint --fix --max-warnings 0"
    ],
    "*.js": [
      "prettier --print-width 140 --single-quote --arrow-parens avoid --trailing-comma es5 --parser babel --write",
      "eslint --fix --max-warnings 0"
    ],
    "*.json": [
      "prettier --print-width 140 --single-quote --trailing-comma es5 --parser json --write"
    ],
    "*.md": [
      "prettier --write",
      "remark"
    ]
  },
  "devDependencies": {
    "@types/jest": "^28.1.4",
    "@types/node": "^18.0.3",
    "@types/node-fetch": "^2.6.2",
    "@types/svgo": "^2.6.3",
    "@types/yargs": "^17.0.10",
    "eslint": "^8.19.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.1",
    "jest": "^28.1.2",
    "lint-staged": "^13.0.3",
    "npm-check": "^5.9.2",
    "prettier": "^2.7.1",
    "remark-cli": "^11.0.0",
    "remark-lint": "^9.1.1",
    "remark-preset-lint-recommended": "^6.1.2",
    "rimraf": "^3.0.2",
    "ts-jest": "^28.0.5",
    "ts-node": "^10.8.2",
    "typescript": "^4.7.4"
  },
  "dependencies": {
    "chalk": "^4.1.2",
    "iso-3166-1": "^2.1.1",
    "node-fetch": "^3.2.6",
    "svgo": "^2.8.0",
    "yargs": "^17.5.1"
  }
}
