@oclif/plugin-plugins
Version:
plugins plugin for oclif
89 lines • 2.42 kB
JSON
{
"name": "@oclif/plugin-plugins",
"description": "plugins plugin for oclif",
"version": "3.8.0",
"author": "Salesforce",
"bugs": "https://github.com/oclif/plugin-plugins/issues",
"dependencies": {
"@oclif/core": "^2.15.0",
"chalk": "^4.1.2",
"debug": "^4.3.4",
"http-call": "^5.2.2",
"load-json-file": "^5.3.0",
"npm": "9.6.7",
"npm-run-path": "^4.0.1",
"semver": "^7.5.4",
"shelljs": "^0.8.5",
"tslib": "^2.6.2",
"validate-npm-package-name": "^5.0.0",
"yarn": "^1.22.18"
},
"devDependencies": {
"@commitlint/config-conventional": "^12.1.4",
"@oclif/plugin-help": "^5.2.18",
"@oclif/test": "^2.4.7",
"@types/chai": "^4.3.6",
"@types/mocha": "^8.2.3",
"@types/node": "^14.18.60",
"@types/semver": "^7.5.0",
"@types/shelljs": "^0.8.12",
"@types/supports-color": "^7.2.0",
"@types/validate-npm-package-name": "^4.0.0",
"chai": "^4.3.8",
"commitlint": "^12.1.4",
"eslint": "^7.31.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"fancy-test": "^2.0.35",
"globby": "^11.1.0",
"husky": "6",
"mocha": "^9.2.2",
"nock": "^13.3.3",
"oclif": "^3.9.1",
"shx": "^0.3.4",
"ts-node": "^10.7.0",
"typescript": "4.9.5"
},
"engines": {
"node": ">=16"
},
"files": [
"oclif.manifest.json",
"/lib"
],
"homepage": "https://github.com/oclif/plugin-plugins",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"hooks": {
"update": "./lib/hooks/update.js"
},
"devPlugins": [
"@oclif/plugin-help"
],
"aliases": {
"aliasme": "oclif-debug"
},
"bin": "mycli"
},
"repository": "oclif/plugin-plugins",
"scripts": {
"build": "shx rm -rf lib && tsc",
"commitlint": "commitlint",
"clean": "shx rm -f oclif.manifest.json",
"lint": "eslint . --ext .ts --config .eslintrc",
"pretest": "yarn build && tsc -p test --noEmit",
"test": "mocha \"test/**/*.test.ts\"",
"test:integration": "mocha \"test/**/*.integration.ts\"",
"posttest": "yarn lint",
"prepublishOnly": "yarn run build && oclif manifest . && oclif readme",
"postpublish": "yarn run clean",
"preversion": "yarn run clean",
"version": "oclif readme && git add README.md"
},
"types": "lib/index.d.ts"
}