forked from heroku/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.84 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "heroku-cli",
"description": "CLI to interact with Heroku",
"version": "6.14.22",
"author": "Jeff Dickey @jdxcode",
"bin": {
"heroku": "bin/run"
},
"bugs": "https://github.com/heroku/cli/issues",
"cli-engine": {
"bin": "heroku",
"userPlugins": true,
"dirname": "heroku",
"node": "8.5.0",
"defaultCommand": "dashboard",
"legacyConverter": "./lib/legacy",
"hooks": {
"iit": "./lib/hooks/init/migrate",
"prerun": "./lib/hooks/prerun/analytics",
"update": [
"./lib/hooks/update/analytics",
"./lib/hooks/update/completions"
]
},
"s3": {
"host": "cli-assets.heroku.com"
},
"plugins": [
"heroku-apps",
"heroku-certs",
"heroku-ci",
"heroku-cli-addons",
"heroku-cli-oauth",
"heroku-cli-status",
"heroku-container-registry",
"heroku-fork",
"heroku-git",
"heroku-local",
"heroku-orgs",
"heroku-pg",
"heroku-pipelines",
"heroku-ps-exec",
"heroku-redis",
"heroku-run",
"heroku-spaces",
"heroku-webhooks"
]
},
"dependencies": {
"cli-engine": "^5.0.0-ts.0",
"cli-engine-command": "^9.0.0-ts.11",
"cli-engine-config": "4.0.1-ts.15",
"cli-engine-heroku": "^5.0.0-ts.2",
"cli-ux": "^1.1.9",
"debug": "3.0.1",
"fs-extra": "4.0.2",
"heroku-apps": "2.4.13",
"heroku-certs": "1.1.41",
"heroku-ci": "1.9.5",
"heroku-cli-addons": "1.2.25",
"heroku-cli-oauth": "2.0.14",
"heroku-cli-status": "4.0.5",
"heroku-container-registry": "4.4.0",
"heroku-fork": "4.1.25",
"heroku-git": "2.5.21",
"heroku-local": "5.1.21",
"heroku-orgs": "1.6.6",
"heroku-pg": "2.3.0",
"heroku-pipelines": "2.3.1",
"heroku-ps-exec": "2.2.0",
"heroku-redis": "1.2.15",
"heroku-run": "3.5.2",
"heroku-spaces": "2.9.6",
"heroku-webhooks": "1.0.7",
"http-call": "^4.0.0-ts2.0",
"netrc-parser": "2.0.3"
},
"devDependencies": {
"@heroku/heroku-cli-dev-center-generator": "1.1.6",
"@types/chalk": "^0.4.31",
"@types/fs-extra": "^4.0.2",
"@types/jest": "^20.0.8",
"@types/nock": "^8.2.1",
"babel-core": "^6.26.0",
"del-cli": "1.1.0",
"husky": "0.14.3",
"jest": "21.1.0",
"nock": "9.0.14",
"prettier": "^1.7.0",
"ts-jest": "^21.0.1",
"typescript": "^2.5.2"
},
"engineStrict": true,
"engines": {
"node": ">=8.0.0"
},
"files": [
"lib",
"bin"
],
"homepage": "https://cli.heroku.com",
"keywords": [
"heroku",
"heroku-cli-plugin"
],
"license": "ISC",
"repository": "https://github.com/heroku/cli",
"scripts": {
"build": "tsc",
"clean": "del lib tmp dist",
"lint": "./scripts/test/lint",
"precommit": "./scripts/precommit",
"prepare": "npm run clean && npm run build",
"test": "./scripts/test/all"
}
}