{
  "name": "hltv-api",
  "version": "3.0.3",
  "description": "API from Hltv.org",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=16"
  },
  "scripts": {
    "report-coverage": "cat ./coverage/lcov.info | codecov",
    "cover": "jest --coverage",
    "lint": "eslint --ext js,ts,tsx ./src",
    "format": "prettier --write '**/*.{ts,tsx}'",
    "pretest": "npm run lint",
    "test": "jest",
    "test:w": "yarn test --watch",
    "prebuild": "rimraf dist",
    "build": "tsc -p .",
    "build:w": "tsc -p . -w"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/dajk/hltv-api.git"
  },
  "keywords": [
    "hltv.org",
    "api",
    "cs:go",
    "csgo",
    "Counter-Strike: Global Offensive",
    "node",
    "node.js",
    "nodejs"
  ],
  "author": {
    "email": "me@radovanhajdukovic.com",
    "name": "Radovan Hajdukovic",
    "url": "https://www.radovanhajdukovic.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dajk/hltv-api/issues"
  },
  "homepage": "https://github.com/dajk/hltv-api#readme",
  "dependencies": {
    "cheerio": "^1.0.0-rc.3",
    "node-fetch": "^2.6.0",
    "user-agents": "^1.0.1017",
    "xml2js": "^0.4.23"
  },
  "devDependencies": {
    "@types/cheerio": "^0.22.21",
    "@types/jest": "^26.0.10",
    "@types/node": "^14.6.0",
    "@types/node-fetch": "^2.5.7",
    "@types/user-agents": "^1.0.2",
    "@types/xml2js": "^0.4.5",
    "@typescript-eslint/eslint-plugin": "^4.1.0",
    "@typescript-eslint/parser": "^4.1.0",
    "codecov": "^3.7.2",
    "eslint": "^7.7.0",
    "eslint-config-airbnb-base": "^14.2.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-prettier": "^3.1.4",
    "husky": "^4.2.5",
    "jest": "^26.4.2",
    "lint-staged": "^10.2.11",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.2.0",
    "ts-node": "^9.0.0",
    "typescript": "^4.0.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts,tsx}": [
      "eslint --fix",
      "git add"
    ]
  }
}
