{
  "name": "@vtex/cli-plugin-deps",
  "description": "vtex plugin deps",
  "version": "0.1.1",
  "bugs": "https://github.com/vtex/cli-plugin-deps/issues",
  "dependencies": {
    "@oclif/command": "^1",
    "@oclif/config": "^1",
    "@tiagonapoli/oclif-plugin-spaced-commands": "^0.0.6",
    "@types/diff": "^4.0.2",
    "@types/ramda": "^0.27.14",
    "tslib": "^1"
  },
  "devDependencies": {
    "@oclif/dev-cli": "^1",
    "@oclif/plugin-help": "^3",
    "@types/jest": "^26.0.3",
    "@types/node": "^14.0.14",
    "eslint": "^6.8.0",
    "eslint-config-oclif": "^3.1",
    "eslint-config-vtex": "^12.3.0",
    "globby": "^10",
    "husky": "^4.2.5",
    "jest": "^25.1.0",
    "lint-staged": "^10.2.11",
    "nodemon": "^2.0.2",
    "nodemon-notifier-cli": "https://github.com/Slessi/nodemon-notifier-cli.git",
    "prettier": "^2.0.1",
    "ts-jest": "^25.2.1",
    "ts-node": "^8",
    "typescript": "^3.8.2",
    "vtex": "^2.110.0-beta.0"
  },
  "engines": {
    "node": ">=8.0.0"
  },
  "files": [
    "/build",
    "/npm-shrinkwrap.json",
    "/oclif.manifest.json",
    "/yarn.lock"
  ],
  "homepage": "https://github.com/vtex/cli-plugin-deps",
  "keywords": [
    "oclif-plugin"
  ],
  "license": "MIT",
  "oclif": {
    "commands": "./build/commands",
    "bin": "oclif-example",
    "devPlugins": [
      "@oclif/plugin-help"
    ],
    "topics": {
      "deps": {
        "description": "Lists, compares, or updates dependencies. Run 'vtex deps' to see all 3 subcommands."
      }
    }
  },
  "repository": "vtex/cli-plugin-deps",
  "scripts": {
    "build-clean": "rm -rf build",
    "build-incremental": "tsc --incremental",
    "build": "yarn build-clean && yarn tsc && OCLIF_COMPILATION=true yarn oclif-dev manifest --color=256",
    "ci:prettier-check": "prettier --check --config ./.prettierrc \"./src/**/*.{ts,tsx,js,jsx,json}\"",
    "ci:test": "yarn test --ci",
    "format-lint": "yarn format && yarn lint",
    "format": "prettier --config ./.prettierrc --write \"**/*.{ts,js,json}\"",
    "lint": "eslint ./src --cache --ext .ts --config .eslintrc",
    "postpack": "rm -f oclif.manifest.json",
    "posttest": "eslint . --ext .ts --config .eslintrc",
    "prepack": "rm -rf build && tsc -b && oclif-dev manifest --color=256 && oclif-dev readme",
    "prepublishOnly": "bash ./scripts/publishLock.sh",
    "test": "jest --passWithNoTests",
    "version": "oclif-dev readme && git add README.md",
    "watch": "yarn build-clean && yarn nodemon"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,js,tsx,jsx}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.json": [
      "prettier --write"
    ]
  }
}
