UNPKG

1.47 kBJSONView Raw
1{
2 "name": "cli-engine-command",
3 "description": "base CLI command for cli-engine",
4 "version": "11.0.5",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/heroku/cli-engine-command/issues",
7 "dependencies": {
8 "chalk": "2.3.0",
9 "cli-flags": "2.0.2",
10 "cli-ux": "^2.0.10",
11 "http-call": "^4.0.5"
12 },
13 "devDependencies": {
14 "@types/jest": "21.1.9",
15 "@types/nock": "9.1.0",
16 "@types/node": "8.5.2",
17 "cli-engine-config": "5.0.5",
18 "del-cli": "1.1.0",
19 "husky": "^0.14.3",
20 "jest": "^22.0.3",
21 "lint-staged": "^6.0.0",
22 "nock": "^9.1.5",
23 "prettier": "^1.9.2",
24 "ts-jest": "22.0.0",
25 "ts-node": "4.0.2",
26 "tslint": "^5.8.0",
27 "tslint-cli-engine": "^1.0.1",
28 "typescript": "2.6.2"
29 },
30 "engines": {
31 "node": ">=7.6.0"
32 },
33 "files": [
34 "lib"
35 ],
36 "homepage": "https://github.com/heroku/cli-engine-command",
37 "keywords": [
38 "heroku",
39 "heroku-cli-plugin"
40 ],
41 "license": "ISC",
42 "main": "lib/index.js",
43 "peerDependencies": {
44 "cli-engine-config": "^5.0.2"
45 },
46 "repository": "heroku/cli-engine-command",
47 "scripts": {
48 "clean": "del-cli lib",
49 "posttest": "tslint -p . && prettier -l 'src/**/*.ts'",
50 "precommit": "lint-staged",
51 "prepare": "tsc",
52 "prepublishOnly": "yarn run clean && yarn run prepare && yarn run prune",
53 "pretest": "tsc",
54 "prune": "del-cli 'lib/**/*.test.+(d.ts|js)'",
55 "test": "jest"
56 },
57 "types": "./lib/index.d.ts"
58}