This repository was archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
{
"name": "@heroku-cli/plugin-pg",
"description": "Heroku CLI plugin to manage Postgres.",
"version": "2.10.0",
"author": "Jeff Dickey (@dickeyxxx)",
"bugs": {
"url": "https://github.com/heroku/heroku-pg/issues"
},
"dependencies": {
"@heroku-cli/plugin-addons": "^1.2.29",
"bytes": "^3.0.0",
"co": "^4.6.0",
"co-wait": "^0.0.0",
"debug": "^3.1.0",
"filesize": "^3.6.1",
"heroku-cli-util": "^8.0.9",
"lodash": "^4.17.10",
"mkdirp": "^0.5.1",
"node-notifier": "^5.2.1",
"smooth-progress": "^1.1.0",
"strip-eof": "^1.0.0",
"tunnel-ssh": "^4.1.4"
},
"devDependencies": {
"@oclif/dev-cli": "^1.13.22",
"@oclif/plugin-legacy": "^1.0.15",
"heroku-client": "^3.0.6",
"mocha": "^5.1.1",
"nock": "9.2.6",
"np": "^2.20.1",
"nyc": "^11.8.0",
"proxyquire": "^2.0.1",
"sinon": "<2",
"standard": "^10.0.2",
"unexpected": "^10.37.7"
},
"files": [
".oclif.manifest.json",
"index.js",
"assets",
"lib",
"commands"
],
"homepage": "https://github.com/heroku/heroku-pg",
"keywords": [
"heroku-plugin"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/heroku/heroku-pg.git"
},
"scripts": {
"test": "TZ=utc nyc mocha && standard",
"release": "np",
"prepublishOnly": "oclif-dev manifest",
"postpublish": "rm .oclif.manifest.json"
},
"cli-engine": {
"topics": {
"pg": {
"description": "manage postgresql databases"
}
}
}
}