UNPKG

1.7 kBJSONView Raw
1{
2 "name": "@heroku-cli/command",
3 "description": "base class for Heroku CLI commands",
4 "version": "8.1.18",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/heroku/heroku-cli-command/issues",
7 "dependencies": {
8 "@heroku-cli/color": "^1.1.5",
9 "@oclif/errors": "^1.1.1",
10 "cli-ux": "^4.3.0",
11 "debug": "^3.1.0",
12 "heroku-client": "^3.0.6",
13 "http-call": "^5.1.2",
14 "netrc-parser": "^3.1.4",
15 "opn": "^5.3.0"
16 },
17 "devDependencies": {
18 "@heroku-cli/tslint": "^1.1.4",
19 "@oclif/command": "^1.4.30",
20 "@oclif/config": "^1.6.18",
21 "@oclif/tslint": "^1.1.1",
22 "@types/ansi-styles": "^3.2.0",
23 "@types/chai": "^4.1.3",
24 "@types/mocha": "^5.2.0",
25 "@types/nock": "^9.1.3",
26 "@types/node": "^10.0.9",
27 "@types/opn": "^5.1.0",
28 "@types/proxyquire": "^1.3.28",
29 "@types/sinon": "^4.3.3",
30 "@types/supports-color": "^5.3.0",
31 "chai": "^4.1.2",
32 "fancy-test": "^1.0.8",
33 "mocha": "^5.1.1",
34 "nock": "^9.2.5",
35 "proxyquire": "^2.0.1",
36 "sinon": "^5.0.7",
37 "testdouble": "^3.8.1",
38 "ts-node": "^6.0.3",
39 "tslint": "^5.10.0",
40 "typescript": "^2.8.3"
41 },
42 "engines": {
43 "node": ">=6.0.0"
44 },
45 "files": [
46 "lib"
47 ],
48 "homepage": "https://github.com/heroku/heroku-cli-command",
49 "keywords": [
50 "heroku"
51 ],
52 "license": "ISC",
53 "main": "lib/index.js",
54 "repository": "heroku/heroku-cli-command",
55 "scripts": {
56 "build": "rm -rf lib && tsc",
57 "lint": "tsc -p test --noEmit && tslint -p test -t stylish",
58 "posttest": "yarn run lint",
59 "prepublishOnly": "yarn run build",
60 "test": "mocha --forbid-only \"test/**/*.test.ts\""
61 },
62 "types": "./lib/index.d.ts"
63}