UNPKG

1.72 kBJSONView Raw
1{
2 "name": "@heroku-cli/command",
3 "description": "base class for Heroku CLI commands",
4 "version": "9.0.2",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/heroku/heroku-cli-command/issues",
7 "dependencies": {
8 "@heroku-cli/color": "^1.1.14",
9 "@oclif/core": "^1.26.2",
10 "cli-ux": "^6.0.9",
11 "debug": "^4.1.1",
12 "fs-extra": "^7.0.1",
13 "heroku-client": "^3.1.0",
14 "http-call": "^5.2.4",
15 "netrc-parser": "^3.1.6",
16 "open": "^6.2.0",
17 "uuid": "^8.3.0"
18 },
19 "devDependencies": {
20 "@heroku-cli/schema": "^1.0.25",
21 "@heroku-cli/tslint": "^1.1.4",
22 "@oclif/tslint": "^3.1.1",
23 "@types/ansi-styles": "^3.2.1",
24 "@types/chai": "^4.1.7",
25 "@types/fs-extra": "^5.0.5",
26 "@types/mocha": "^5.2.6",
27 "@types/nock": "^9.3.1",
28 "@types/node": "^18.11.9",
29 "@types/proxyquire": "^1.3.28",
30 "@types/sinon": "^9.0.5",
31 "@types/supports-color": "^5.3.0",
32 "@types/uuid": "^8.3.0",
33 "chai": "^4.2.0",
34 "fancy-test": "^1.4.3",
35 "mocha": "^6.1.4",
36 "nock": "^10.0.6",
37 "proxyquire": "^2.1.0",
38 "sinon": "^9.0.3",
39 "ts-node": "^8.1.0",
40 "tslint": "^6.1.3",
41 "typescript": "^4.8.4"
42 },
43 "engines": {
44 "node": ">=14.0.0"
45 },
46 "files": [
47 "lib"
48 ],
49 "homepage": "https://github.com/heroku/heroku-cli-command",
50 "keywords": [
51 "heroku"
52 ],
53 "license": "ISC",
54 "main": "lib/index.js",
55 "repository": "heroku/heroku-cli-command",
56 "scripts": {
57 "build": "rm -rf lib && tsc",
58 "lint": "tsc -p test --noEmit && tslint -p test -t stylish",
59 "posttest": "yarn run lint",
60 "prepublishOnly": "yarn run build",
61 "test": "mocha --forbid-only \"test/**/*.test.ts\""
62 },
63 "types": "./lib/index.d.ts"
64}