@heroku-cli/command
Version:
base class for Heroku CLI commands
74 lines • 2.14 kB
JSON
{
"name": "@heroku-cli/command",
"description": "base class for Heroku CLI commands",
"version": "12.2.1",
"author": "Heroku",
"bugs": "https://github.com/heroku/heroku-cli-command/issues",
"dependencies": {
"@heroku/http-call": "^5.4.0",
"@oclif/core": "^4.3.0",
"ansis": "^4",
"debug": "^4.4.0",
"inquirer": "^8.2.6",
"netrc-parser": "^3.1.6",
"open": "^11.0.0",
"yargs-parser": "^20.2.9",
"yargs-unparser": "^2.0.0"
},
"devDependencies": {
"@heroku-cli/schema": "^1.0.25",
"@types/chai": "^5.2.2",
"@types/debug": "^4.1.12",
"@types/inquirer": "^8.2.11",
"@types/mocha": "^10.0.6",
"@types/node": "22.15.21",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^21.0.0",
"@types/supports-color": "^5.3.0",
"@types/yargs-parser": "^21.0.3",
"@types/yargs-unparser": "^2.0.3",
"@typescript-eslint/parser": "^8",
"c8": "^10.1.3",
"chai": "^6.2.2",
"conventional-changelog": "^7.1.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9",
"eslint-config-oclif": "^6.0.144",
"eslint-plugin-mocha": "^11.2.0",
"fancy-test": "^3.0.16",
"mocha": "^11",
"nock": "^14.0.1",
"proxyquire": "^2.1.3",
"sinon": "^21.0.1",
"stdout-stderr": "^0.1.13",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">= 20"
},
"files": [
"lib"
],
"homepage": "https://github.com/heroku/heroku-cli-command",
"keywords": [
"heroku"
],
"license": "ISC",
"main": "lib/index.js",
"repository": "heroku/heroku-cli-command",
"type": "module",
"types": "./lib/index.d.ts",
"overrides": {
"serialize-javascript": "^7.0.3"
},
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "tsc -p test --noEmit && eslint .",
"test": "c8 --reporter=text-summary --check-coverage mocha --forbid-only \"test/**/*.test.ts\"",
"test:file": "c8 mocha",
"test:local": "c8 mocha \"test/**/*.test.ts\"",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0",
"example": "sh examples/run.sh"
}
}