-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.14 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
{
"name": "borealis-pg-cli",
"description": "CLI for advanced interactions with Borealis Isolated Postgres add-ons",
"version": "1.6.2",
"author": "Boreal Information Systems Inc.",
"bugs": "https://github.com/OldSneerJaw/borealis-pg-cli/issues",
"dependencies": {
"@heroku-cli/command": "^11.3.2",
"@oclif/core": "^2.16.0",
"dotenv": "^16.4.7",
"http-call": "^5.3.0",
"luxon": "^3.5.0",
"node-notifier": "^10.0.1",
"pg": "^8.13.1",
"ssh2": "^1.16.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@heroku-cli/schema": "^1.0.25",
"@oclif/test": "^2.5.6",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-string": "^1.4.5",
"@types/glob": "^8.1.0",
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.10",
"@types/node": "^20.14.8",
"@types/node-notifier": "^8.0.5",
"@types/pg": "^8.11.10",
"@types/ssh2": "^1.15.1",
"@types/supports-color": "^8.1.3",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-string": "^1.5.0",
"chalk": "^2.4.2",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"globby": "^11.1.0",
"mocha": "^10.8.2",
"nock": "^13.5.6",
"nyc": "^15.1.0",
"oclif": "^3.17.2",
"shx": "^0.3.4",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "~4.4.4"
},
"resolutions": {
"ansi-regex": "^5.0.1"
},
"engines": {
"node": ">=16.20.2"
},
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/yarn.lock"
],
"homepage": "https://github.com/OldSneerJaw/borealis-pg-cli",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"nyc": {
"all": true,
"reporter": [
"html",
"text"
],
"check-coverage": true,
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
},
"oclif": {
"commands": "./lib/commands",
"bin": "heroku",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"borealis-pg": {
"description": "manage Borealis Isolated Postgres add-ons"
},
"borealis-pg:extensions": {
"description": "manage add-on PostgreSQL extensions"
},
"borealis-pg:integrations": {
"description": "manage add-on data integrations"
},
"borealis-pg:restore": {
"description": "manage add-on database restores/clones"
},
"borealis-pg:users": {
"description": "manage add-on database users"
}
}
},
"repository": "OldSneerJaw/borealis-pg-cli",
"scripts": {
"build": "shx rm -rf lib && tsc -b",
"clean": "shx rm -rf lib node_modules",
"lint": "eslint --max-warnings 0 --ext .ts --config .eslintrc .",
"install": "node -e 'console.warn(\"NOTE: It is safe to ignore errors from gyp (if any) in the preceding output\")'",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "yarn build && oclif manifest && oclif readme --no-aliases",
"test": "nyc mocha --forbid-only 'src/**/*.test.ts'",
"version": "yarn build && oclif readme --no-aliases && git add README.md"
}
}