-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.39 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
{
"name": "heroku-pgcli",
"description": "pgcli plugin for Heroku CLI",
"version": "0.1.3",
"author": "techgaun @techgaun",
"bugs": "https://github.com/techgaun/heroku-pgcli/issues",
"dependencies": {
"@heroku-cli/command": "^8.2.6",
"@oclif/command": "^1",
"@oclif/config": "^1",
"tslib": "^1"
},
"devDependencies": {
"@heroku-cli/schema": "^1.0.25",
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"@oclif/tslint": "^3",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"globby": "^8",
"ts-node": "^7",
"tslint": "^5",
"typescript": "^3.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/yarn.lock"
],
"homepage": "https://github.com/techgaun/heroku-pgcli",
"keywords": [
"oclif-plugin",
"heroku",
"heroku-plugin",
"postgresql",
"pgcli"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "oclif-example",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "techgaun/heroku-pgcli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p . -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
}
}