{
  "name": "@stu43005/holodex-api",
  "version": "1.0.3",
  "description": "A Javascript library for the Holodex API.",
  "main": "dist/index.js",
  "scripts": {
    "prebuild": "rimraf dist",
    "build": "tsc -p tsconfig.build.json",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint \"src/**/*.ts\" --fix",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
    "docs": "typedoc --theme ./node_modules/typedoc-neo-theme/bin/default --plugin typedoc-neo-theme --excludeInternal --out docs src/index.ts",
    "publish:prepare": "npm run format && npm run lint && npm run test && npm run docs && npm run build",
    "publish:patch": "npm version patch && npm publish --access public",
    "publish:minor": "npm version minor && npm publish --access public",
    "publish:major": "npm version major && npm publish --access public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stu43005/holodex-api.git"
  },
  "keywords": [
    "hololive",
    "holodex",
    "api"
  ],
  "author": "Shiaupiau",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/stu43005/holodex-api"
  },
  "homepage": "https://stu43005.github.io/holodex-api/index.html",
  "dependencies": {
    "axios": "^0.21.1",
    "axios-retry": "^3.1.9",
    "querystring": "^0.2.1",
    "rimraf": "^3.0.2",
    "tslib": "^2.3.0"
  },
  "devDependencies": {
    "@tsconfig/node10": "^1.0.8",
    "@types/jest": "^26.0.23",
    "@types/node": "^14.17.4",
    "@types/supertest": "^2.0.11",
    "@typescript-eslint/eslint-plugin": "^4.28.0",
    "@typescript-eslint/parser": "^4.28.0",
    "dotenv": "^10.0.0",
    "eslint": "^7.29.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^3.4.0",
    "jest": "^27.0.5",
    "prettier": "^2.3.1",
    "supertest": "^6.1.3",
    "ts-jest": "^27.0.3",
    "ts-loader": "^9.2.3",
    "ts-node": "^10.0.0",
    "tsconfig-paths": "^3.9.0",
    "typedoc": "^0.21.1",
    "typedoc-neo-theme": "^1.1.1",
    "typescript": "^4.3.4"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": "src",
    "testRegex": ".*\\.spec\\.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "collectCoverageFrom": [
      "**/*.(t|j)s"
    ],
    "coverageDirectory": "../coverage",
    "testEnvironment": "node"
  }
}
