{
  "name": "oclif-plugin-completion",
  "version": "0.6.0",
  "description": "oclif plugin for generating shell completions",
  "keywords": [
    "oclif",
    "oclif-plugin",
    "shell",
    "zsh",
    "completion",
    "autocomplete"
  ],
  "homepage": "https://github.com/MunifTanjim/oclif-plugin-completion#readme",
  "bugs": "https://github.com/MunifTanjim/oclif-plugin-completion/issues",
  "license": "MIT",
  "author": "Munif Tanjim (https://muniftanjim.dev)",
  "files": [
    "/lib",
    "/oclif.manifest.json",
    "/yarn.lock"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/MunifTanjim/oclif-plugin-completion"
  },
  "scripts": {
    "prebuild": "rm -rf lib",
    "build": "tsc -b",
    "changelog": "conventional-changelog --config .changelogrc.js -i CHANGELOG.md -s -a",
    "postchangelog": "git add CHANGELOG.md",
    "cz": "npx git-cz",
    "prepack": "npm run build && oclif-dev manifest",
    "postpack": "rm -f oclif.manifest.json",
    "readme": "oclif-dev readme",
    "postreadme": "prettier --write README.md && git add README.md",
    "prerelease": "git commit -m \"chore: release $npm_package_version\" && git tag $npm_package_version -am $npm_package_version",
    "release": "yarn publish",
    "test": "echo NO TESTS",
    "posttest": "eslint . --ext .ts --config .eslintrc.js",
    "preversion": "yarn config set version-git-tag false",
    "version": "npm run changelog && npm run readme",
    "postversion": "git add package.json"
  },
  "dependencies": {
    "@oclif/command": "^1",
    "@oclif/config": "^1",
    "tslib": "^2"
  },
  "devDependencies": {
    "@commitlint/cli": "^8.3.5",
    "@commitlint/config-conventional": "^8.3.4",
    "@commitlint/prompt-cli": "^8.3.5",
    "@oclif/dev-cli": "^1",
    "@oclif/plugin-help": "^3",
    "@types/node": "^14.0",
    "commitizen": "^4.1.2",
    "conventional-changelog-cli": "^2.0.34",
    "conventional-changelog-conventionalcommits": "^4.3.1",
    "eslint": "^6.8",
    "eslint-config-oclif": "^3.1",
    "eslint-config-oclif-typescript": "^0.1",
    "eslint-config-prettier": "^6.10",
    "eslint-plugin-prettier": "^3.1",
    "husky": "^4.2",
    "lint-staged": "^10.2",
    "prettier": "^2.0",
    "pretty-quick": "^2.0",
    "ts-node": "^8.6",
    "typescript": "^3.8"
  },
  "peerDependencies": {
    "@oclif/errors": "^1.2"
  },
  "engines": {
    "node": ">=8.0.0"
  },
  "oclif": {
    "commands": "./lib/commands",
    "bin": "dummy",
    "devPlugins": [
      "@oclif/plugin-help"
    ],
    "repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
  }
}
