{
  "name": "dota-wiki-api",
  "version": "1.1.0",
  "description": "A module to communicate with Liquipedia's Dota 2 Wiki to fetch Team Info, DPC Rankings, Dota Game Schedules, and more!",
  "license": "MIT",
  "repository": "https://github.com/ammuench/dota-wiki-api",
  "author": "Alex Muench (https://alexmuen.ch)",
  "keywords": [
    "dota",
    "dota2",
    "dota 2",
    "liquipedia",
    "esports",
    "defense",
    "ancients",
    "valve"
  ],
  "files": [
    "dist"
  ],
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "clean": "rimraf dist",
    "lint": "tslint --force --format verbose \"src/**/*.ts\"",
    "build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
    "test": "npm run build && mocha --compilers ts:ts-node/register --recursive 'test/**/*-spec.ts'",
    "coverage": "nyc --include='src/**/*.ts' --reporter=text --reporter=html --reporter=lcov mocha --require ts-node/register --compilers ts:ts-node/register --recursive 'test/**/*-spec.ts'",
    "watch": "npm run build -- --watch",
    "watch:test": "npm run test -- --watch",
    "start": "node dist/demo.js",
    "demo": "npm run build && node dist/demo.js"
  },
  "dependencies": {
    "cheerio": "^1.0.0-rc.2",
    "date-fns": "^1.29.0",
    "node-fetch": "^2.1.2",
    "tslint": "^5.9.0"
  },
  "devDependencies": {
    "@types/chai": "^3.0.0",
    "@types/cheerio": "^0.22.7",
    "@types/mocha": "^2.0.0",
    "@types/node": "^7.0.0",
    "@types/node-fetch": "^1.6.9",
    "@types/sinon": "^4.3.0",
    "chai": "^3.0.0",
    "coveralls": "^3.0.2",
    "mocha": "^5.2.0",
    "nyc": "^11.0.0",
    "rimraf": "^2.0.0",
    "sinon": "^4.4.2",
    "ts-node": "^5.0.0",
    "tslint": "^5.3.2",
    "typescript": "^2.8.0"
  },
  "engines": {
    "node": ">=4.0.0"
  },
  "nyc": {
    "include": [
      "src/**/*"
    ],
    "exclude": [
      "dist",
      "src/demo.ts"
    ],
    "extension": [
      ".ts"
    ],
    "reporter": [],
    "all": true
  }
}
