{
  "name": "@kentico/kontent-cli",
  "version": "0.5.1",
  "description": "Command line interface tool that can be used for generating and running Kontent migration scripts",
  "main": "./lib/index.js",
  "types": "./lib/types/index.d.ts",
  "scripts": {
    "build": "tsc",
    "watch": "tsc -w",
    "test": "jest",
    "lint": "tslint --project tsconfig.json \"src/**/*.ts\" && prettier --check \"src/**/*.ts\"",
    "lint:fix": "tslint --project tsconfig.json --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
    "debug": "node --inspect ./lib/index.js migration run --all -e DEV"
  },
  "publishConfig": {
    "access": "public"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "tslint --fix --project tsconfig.json",
      "prettier --write",
      "git add"
    ]
  },
  "bin": {
    "kontent": "./lib/index.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Kentico/kontent-cli.git"
  },
  "author": "Kentico",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Kentico/kontent-cli/issues"
  },
  "prettier": {
    "semi": true,
    "singleQuote": true,
    "tabWidth": 4,
    "printWidth": 250
  },
  "homepage": "https://github.com/Kentico/kontent-cli#readme",
  "dependencies": {
    "@kentico/kontent-backup-manager": "3.2.1",
    "chalk": "^4.0.0",
    "dotenv": "^8.2.0",
    "yargs": "^15.3.1"
  },
  "peerDependencies": {
    "@kentico/kontent-management": "^2.0.0"
  },
  "devDependencies": {
    "@babel/core": "~7.9.0",
    "@babel/preset-env": "~7.9.5",
    "@babel/preset-typescript": "~7.9.0",
    "@types/jest": "~25.2.1",
    "@types/node": "~13.13.2",
    "@types/yargs": "~15.0.4",
    "babel-jest": "~25.4.0",
    "husky": "~4.2.5",
    "jest": "~25.4.0",
    "lint-staged": "~10.1.7",
    "prettier": "~2.0.5",
    "ts-jest": "~25.4.0",
    "tslint": "~6.1.1",
    "tslint-config-prettier": "~1.18.0",
    "tslint-config-standard": "~9.0.0",
    "typescript": "~3.8.3"
  }
}
