@oclif/plugin-commands
Version:
plugin to show the list of all the commands
82 lines (81 loc) • 2.29 kB
JSON
{
"name": "@oclif/plugin-commands",
"description": "plugin to show the list of all the commands",
"version": "3.0.7",
"author": "Salesforce",
"bugs": "https://github.com/oclif/plugin-commands/issues",
"dependencies": {
"@oclif/core": "^3.11.0",
"lodash.pickby": "^4.6.0",
"lodash.sortby": "^4.7.0",
"lodash.template": "^4.5.0",
"lodash.uniqby": "^4.7.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.8.1",
"@oclif/plugin-help": "^5.2.20",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3.0.2",
"@types/chai": "^4.3.10",
"@types/lodash.pickby": "^4.6.8",
"@types/lodash.sortby": "^4.7.9",
"@types/lodash.template": "^4.5.3",
"@types/lodash.uniqby": "^4.7.9",
"@types/mocha": "^10.0.4",
"@types/nock": "^11.1.0",
"@types/node": "^18",
"chai": "^4.3.10",
"commitlint": "^17.8.1",
"eslint": "^8.53.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.13",
"eslint-config-prettier": "^9.0.0",
"globby": "^11",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"nock": "^13.3.6",
"nyc": "^15.1.0",
"oclif": "^4.0.3",
"prettier": "^3.1.0",
"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",
"/yarn.lock",
"/oclif.lock"
],
"homepage": "https://github.com/oclif/plugin-commands",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "oclif-example",
"devPlugins": [
"@oclif/plugin-help"
],
"flexibleTaxonomy": true
},
"repository": "oclif/plugin-commands",
"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 --noEmit",
"test": "mocha \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"type": "module"
}