{
  "name": "@overwolf/ow-cli",
  "version": "0.1.7",
  "description": "",
  "main": "bin/main.js",
  "scripts": {
    "start:dev": "tsc --watch",
    "build": "rm -rf bin && tsc",
    "build:test": "sh ./scripts/build-test.sh",
    "build:prod": "sh ./scripts/build-prod.sh",
    "lint": "eslint \"**/*.ts\" --fix --max-warnings 0",
    "test": "jest",
    "test:dev": "jest --watch",
    "setup": "npm run setup:hooks",
    "setup:hooks": "git config core.hooksPath .githooks",
    "postinstall": "node scripts/postinstall.js"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "bin": {
    "ow": "./bin/ow.js",
    "overwolf": "./bin/ow.js"
  },
  "dependencies": {
    "archiver": "^5.3.0",
    "axios": "^0.31.0",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.13.2",
    "commander": "^9.0.0",
    "dotenv": "^16.0.0",
    "form-data": "^4.0.0",
    "inquirer": "^8.2.0",
    "reflect-metadata": "^0.1.13",
    "tsyringe": "^4.6.0",
    "winston": "^3.6.0",
    "winston-daily-rotate-file": "^4.6.1"
  },
  "devDependencies": {
    "@types/archiver": "^5.3.1",
    "@types/inquirer": "^8.2.0",
    "@types/jest": "^27.4.0",
    "@types/node": "^17.0.15",
    "@typescript-eslint/eslint-plugin": "^5.10.1",
    "@typescript-eslint/parser": "^5.10.1",
    "eslint": "^8.7.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^27.5.1",
    "prettier": "^2.5.1",
    "ts-jest": "^27.1.3",
    "typescript": "^4.5.5"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": ".",
    "testRegex": ".*\\.spec\\.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "collectCoverageFrom": [
      "**/*.(t|j)s"
    ],
    "coverageDirectory": "./coverage",
    "testEnvironment": "node"
  }
}
