@oclif/plugin-legacy
Version:
converts older style plugins to be compatible with oclif
88 lines (87 loc) • 2.41 kB
JSON
{
"name": "@oclif/plugin-legacy",
"description": "converts older style plugins to be compatible with oclif",
"version": "2.0.2",
"author": "Salesforce",
"bugs": "https://github.com/oclif/plugin-legacy/issues",
"dependencies": {
"@oclif/color": "^1.0.13",
"@oclif/core": "^3.7.1",
"ansi-escapes": "^4.3.2",
"debug": "^4.3.3",
"semver": "^7.5.4"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.8.1",
"@heroku-cli/plugin-apps": "^7.59.1",
"@heroku-cli/plugin-status": "5.0.10",
"@oclif/plugin-help": "^6",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3.0.3",
"@types/chai": "^4.1.6",
"@types/mocha": "^10.0.2",
"@types/nock": "^11.1.0",
"@types/node": "^14.0.14",
"@types/semver": "^7.5.4",
"@types/supports-color": "^7.2.0",
"chai": "^4.2.0",
"commitlint": "^17.8.0",
"eslint-config-oclif-typescript": "^3.0.6",
"eslint-config-oclif": "^5.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint": "^8.51.0",
"globby": "^11.0.1",
"heroku-apps": "^2.4.22",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"mocha": "^10.2.0",
"nock": "^13.0.0",
"nyc": "^15.1.0",
"oclif": "^4.0.2",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@heroku-cli/command": "*"
},
"engines": {
"node": ">=8.0.0"
},
"exports": "./lib/index.js",
"files": [
"/oclif.manifest.json",
"/lib",
"/oclif.lock"
],
"homepage": "https://github.com/oclif/plugin-legacy",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"hooks": {
"init": "./lib/hooks/init.js"
},
"devPlugins": [
"@oclif/plugin-help",
"@heroku-cli/plugin-apps",
"@heroku-cli/plugin-status"
],
"bin": "oclif-example"
},
"repository": "oclif/plugin-legacy",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint . --ext .ts",
"postpack": "rm -f oclif.manifest.json oclif.lock",
"posttest": "yarn lint",
"prepack": "rm -rf lib && tsc && oclif lock && oclif manifest && oclif readme",
"prepare": "husky install",
"pretest": "yarn build && tsc -p test",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"types": "lib/index.d.ts"
}