{
  "name": "mtg-playerinfo",
  "version": "1.6.0",
  "description": "A simple NPM module and CLI tool to pull Magic: The Gathering player data from various sources",
  "main": "src/index.js",
  "bin": {
    "mtg-playerinfo": "./cli.js"
  },
  "scripts": {
    "test": "node --test",
    "test:coverage": "nyc --reporter=lcov --produce-source-map node --test",
    "lint": "standard",
    "lint:fix": "standard --fix"
  },
  "nyc": {
    "extension": [
      ".js"
    ],
    "exclude": [
      "src/utils/httpClient.js",
      "test/"
    ],
    "sourceMap": true,
    "instrument": true
  },
  "keywords": [],
  "author": "Björn Kimminich",
  "license": "MIT",
  "dependencies": {
    "cheerio": "^1.2.0",
    "commander": "^14.0.3"
  },
  "devDependencies": {
    "nyc": "^18.0.0",
    "standard": "^17.1.2"
  },
  "engines": {
    "node": "22 - 25"
  }
}
