{
  "name": "transfermarkt-parser",
  "version": "0.1.1",
  "description": "A small tool for parsing https://www.transfermarkt.com",
  "main": "index.js",
  "scripts": {
    "build": "rm -rf build && tsc",
    "check-types": "tsc --noEmit",
    "copy-files": "cp package.json build/package.json && cp ../../LICENSE build/LICENSE && cp ../../README.md build/README.md",
    "debug": "ts-node src/_debug.ts",
    "prepare-package": "node prepare.js",
    "release": "npm run build && npm run copy-files && npm run prepare-package && cd build && npm publish",
    "test": "JEST_ASYNC_TIMEOUT=30000 TRANSFERMARKT_DDOS_TIMEOUT=5000 jest"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mlipilin/transfermarkt-parser.git"
  },
  "keywords": [
    "transfermarkt",
    "parser",
    "data"
  ],
  "author": "Mikhail Lipilin <lipilin.m@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mlipilin/transfermarkt-parser/issues"
  },
  "homepage": "https://github.com/mlipilin/transfermarkt-parser#readme",
  "dependencies": {
    "jsdom": "^20.0.3",
    "moment": "^2.29.4",
    "node-fetch": "^2.6.7"
  },
  "devDependencies": {
    "@types/jest": "^29.4.0",
    "@types/jsdom": "^20.0.1",
    "jest": "^29.4.3",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "typescript": "^4.8.4"
  }
}