heroku/heroku-git

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@heroku-cli/plugin-git",
  "description": "Heroku CLI plugin to manage local git repos.",
  "version": "3.0.2",
  "author": "Jeff Dickey (@jdxcode)",
  "bugs": {
    "url": "https://github.com/heroku/heroku-git/issues"
  },
  "dependencies": {
    "@oclif/command": "^1",
    "@oclif/config": "^1.6.18",
    "debug": "3.1.0"
  },
  "devDependencies": {
    "@oclif/dev-cli": "^1",
    "@oclif/plugin-help": "^1",
    "@oclif/plugin-legacy": "^1.0.15",
    "@oclif/test": "^1",
    "@oclif/tslint": "^1",
    "@types/chai": "^4",
    "@types/mocha": "^5",
    "@types/node": "^10",
    "@types/supports-color": "^5.3.0",
    "chai": "^4",
    "globby": "^8",
    "mocha": "^5",
    "nock": "^9.2.5",
    "nyc": "^11",
    "ts-node": "^6",
    "tslib": "^1",
    "tslint": "^5",
    "typescript": "^2.8"
  },
  "engines": {
    "node": ">=8.0.0"
  },
  "files": [
    "/lib",
    "/oclif.manifest.json"
  ],
  "homepage": "https://github.com/heroku/heroku-git",
  "keywords": [
    "heroku-plugin"
  ],
  "license": "ISC",
  "oclif": {
    "topics": {
      "git": {
        "description": "manage local git repository for app"
      }
    },
    "commands": "./lib/commands",
    "bin": "oclif-example",
    "devPlugins": [
      "@oclif/plugin-help"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/heroku/heroku-git.git"
  },
  "scripts": {
    "postpack": "rm -f oclif.manifest.json",
    "posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
    "prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
    "prepublishOnly": "oclif-dev manifest",
    "test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
    "version": "oclif-dev readme && git add README.md"
  }
}