forked from heroku/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.24 KB
/
package.json
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
117
118
119
120
121
122
123
124
125
126
127
{
"name": "heroku-cli",
"description": "CLI to interact with Heroku",
"version": "6.14.43",
"author": "Jeff Dickey @jdxcode",
"bin": {
"heroku": "bin/run"
},
"bugs": "https://github.com/heroku/cli/issues",
"cli-engine": {
"bin": "heroku",
"userPlugins": true,
"dirname": "heroku",
"node": "9.2.0",
"defaultCommand": "dashboard",
"legacyConverter": "./lib/legacy",
"npmRegistry": "https://cli-npm.heroku.com",
"hooks": {
"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-git",
"heroku-local",
"heroku-orgs",
"heroku-pg",
"heroku-pipelines",
"heroku-ps-exec",
"heroku-redis",
"heroku-run",
"heroku-spaces",
"heroku-webhooks"
]
},
"dependencies": {
"cli-engine": "4.6.21",
"cli-engine-command": "9.0.3",
"cli-engine-config": "3.4.0",
"cli-engine-heroku": "5.0.3",
"cli-ux": "2.0.5",
"debug": "3.1.0",
"fs-extra": "5.0.0",
"heroku-apps": "2.4.19",
"heroku-certs": "1.1.44",
"heroku-ci": "1.9.5",
"heroku-cli-addons": "1.2.26",
"heroku-cli-oauth": "2.0.14",
"heroku-cli-status": "4.0.5",
"heroku-container-registry": "4.4.1",
"heroku-git": "2.5.23",
"heroku-local": "5.1.21",
"heroku-orgs": "1.6.6",
"heroku-pg": "2.4.1",
"heroku-pipelines": "2.5.0",
"heroku-ps-exec": "2.2.1",
"heroku-redis": "1.3.0",
"heroku-run": "3.5.4",
"heroku-spaces": "2.10.0",
"heroku-webhooks": "1.1.0",
"http-call": "4.0.0",
"netrc-parser": "2.0.3",
"semver": "5.4.1"
},
"devDependencies": {
"@heroku/heroku-cli-dev-center-generator": "1.1.7",
"babel-cli": "6.26.0",
"babel-eslint": "8.0.2",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-preset-flow": "6.23.0",
"eslint": "4.12.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jest": "21.3.2",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"flow-bin": "0.56.0",
"husky": "0.14.3",
"jest": "21.2.1",
"nock": "9.1.3"
},
"engineStrict": true,
"engines": {
"node": ">=8.3.0"
},
"files": [
"lib",
"bin"
],
"homepage": "https://cli.heroku.com",
"jest": {
"modulePathIgnorePatterns": [
"tmp"
]
},
"keywords": [
"heroku",
"heroku-cli-plugin"
],
"license": "ISC",
"repository": "https://github.com/heroku/cli",
"scripts": {
"build": "babel src -d lib --ignore '*.test.js'",
"clean": "rimraf lib tmp dist",
"download": "./scripts/download-yarn",
"lint": "./scripts/test/lint",
"precommit": "./scripts/precommit",
"prepare": "npm run build",
"test": "./scripts/test/all"
}
}