{
  "name": "riot-valorant-api",
  "version": "0.2.4",
  "description": "A NodeJS module that wraps the Valorant Api in a user friendly interface",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/PedroS11/riot-valorant-api.git"
  },
  "keywords": [
    "riot",
    "valorant",
    "typescript",
    "api"
  ],
  "author": "Pedro Silva",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/PedroS11/riot-valorant-api/issues"
  },
  "homepage": "https://github.com/PedroS11/riot-valorant-api#readme",
  "scripts": {
    "build": "tsc",
    "test": "mocha -r ts-node/register \"./lib/**/*.spec.ts\"",
    "test:coverage": "nyc mocha --full-trace --require ts-node/register \"./lib/**/*.spec.ts\"",
    "lint": "eslint 'lib/**/*.ts' --fix",
    "prettier": "prettier --write ./lib/**"
  },
  "dependencies": {
    "axios": "^0.21.4",
    "qs": "^6.10.1"
  },
  "devDependencies": {
    "@types/axios": "^0.14.0",
    "@types/chai": "^4.2.16",
    "@types/chai-as-promised": "^7.1.3",
    "@types/eslint": "^7.2.9",
    "@types/eslint-plugin-prettier": "^3.1.0",
    "@types/mocha": "^8.2.2",
    "@types/node": "^14.14.37",
    "@types/prettier": "^2.2.3",
    "@types/qs": "^6.9.6",
    "@types/sinon": "^10.0.0",
    "@typescript-eslint/eslint-plugin": "^4.22.0",
    "@typescript-eslint/parser": "^4.22.0",
    "axios-mock-adapter": "^1.20.0",
    "chai": "^4.3.4",
    "chai-as-promised": "^7.1.1",
    "eslint": "^7.24.0",
    "eslint-config-prettier": "^8.2.0",
    "eslint-plugin-prettier": "^3.3.1",
    "husky": "^4.3.0",
    "lint-staged": "^10.5.4",
    "mocha": "^9.0.0",
    "nyc": "^15.1.0",
    "prettier": "^2.2.1",
    "sinon": "^10.0.0",
    "ts-node": "^9.1.1",
    "typescript": "^4.2.4"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run prettier && lint-staged && npm run test"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix"
    ],
    "*.ts": [
      "eslint --fix"
    ]
  },
  "nyc": {
    "include": [
      "lib"
    ],
    "all": true,
    "extension": [
      ".ts"
    ]
  }
}
