@oclif/plugin-autocomplete
Version:
autocomplete plugin for oclif
79 lines (78 loc) • 2.14 kB
JSON
{
"name": "@oclif/plugin-autocomplete",
"description": "autocomplete plugin for oclif",
"version": "3.0.2",
"author": "Salesforce",
"bugs": "https://github.com/oclif/plugin-autocomplete/issues",
"dependencies": {
"@oclif/core": "^3.12.0",
"chalk": "^5.3.0",
"debug": "^4.3.4",
"ejs": "^3.1.9"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.0.0",
"@oclif/plugin-help": "^6",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3.0.2",
"@types/chai": "^4",
"@types/chalk": "^2.2.0",
"@types/debug": "^4.1.10",
"@types/ejs": "^3.1.5",
"@types/mocha": "^10.0.4",
"@types/nock": "^11.1.0",
"@types/node": "^18",
"chai": "^4",
"commitlint": "^18.4.2",
"eslint": "^8.53.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.8",
"eslint-config-prettier": "^9.0.0",
"globby": "^11",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"mocha": "^10.2.0",
"nock": "^13.3.8",
"nyc": "^15.1.0",
"oclif": "^4.0.3",
"prettier": "^3.0.3",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"exports": "./lib/index.js",
"files": [
"/lib",
"/oclif.manifest.json",
"/oclif.lock"
],
"homepage": "https://github.com/oclif/plugin-autocomplete",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "oclif-example",
"devPlugins": [
"@oclif/plugin-help"
],
"flexibleTaxonomy": true
},
"repository": "oclif/plugin-autocomplete",
"scripts": {
"build": "shx rm -rf lib && tsc",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json oclif.lock",
"posttest": "yarn lint",
"prepack": "shx rm -rf lib && tsc && oclif lock && oclif manifest . && oclif readme",
"prepare": "husky install && yarn build",
"pretest": "yarn build && tsc -p test",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"type": "module"
}