@heroku-cli/command
Version:
base class for Heroku CLI commands
85 lines (84 loc) • 2.36 kB
JSON
{
"name": "@heroku-cli/command",
"description": "base class for Heroku CLI commands",
"version": "12.0.1",
"author": "Heroku",
"bugs": "https://github.com/heroku/heroku-cli-command/issues",
"dependencies": {
"@heroku-cli/color": "^2.0.4",
"@heroku/http-call": "^5.4.0",
"@oclif/core": "^4.3.0",
"debug": "^4.4.0",
"inquirer": "^8.2.6",
"netrc-parser": "^3.1.6",
"open": "^10.1.2",
"yargs-parser": "^20.2.9",
"yargs-unparser": "^2.0.0"
},
"devDependencies": {
"@heroku-cli/schema": "^1.0.25",
"@types/chai": "^5.2.2",
"@types/inquirer": "^8.2.11",
"@types/mocha": "^10.0.6",
"@types/node": "22.15.17",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.3",
"@types/supports-color": "^5.3.0",
"@types/uuid": "^8.3.0",
"@types/yargs-parser": "^21.0.3",
"@types/yargs-unparser": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"chai": "^5.2.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-oclif": "^5.2.2",
"eslint-config-oclif-typescript": "^3.1.14",
"eslint-plugin-import": "^2.31.0",
"fancy-test": "^2.0.42",
"mocha": "^10.7.3",
"nock": "^14.0.1",
"np": "^10.2.0",
"nyc": "^17.1.0",
"proxyquire": "^2.1.3",
"sinon": "^20.0.0",
"stdout-stderr": "^0.1.13",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"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",
"mocha": {
"require": [
"test/helpers/init.js",
"ts-node/register",
"source-map-support/register"
],
"watch-extensions": "ts",
"recursive": true,
"reporter": "spec",
"timeout": 360000
},
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "tsc -p test --noEmit && eslint . --ext .ts",
"posttest": "npm run lint",
"prepublishOnly": "npm run build",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
"example": "sh examples/run.sh"
},
"types": "./lib/index.d.ts"
}