-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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": "@connectedyard/heroku-postico",
"version": "0.0.10",
"author": "Josh Kennedy @jkennedy1980",
"bugs": "https://github.com/PhinCo/heroku-postico/issues",
"dependencies": {
"@heroku-cli/command": "^8.3.0",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"bplist-creator": "0.0.8",
"cli-ux": "^5.4.10",
"colors": "^1.4.0",
"inquirer": "^7.3.3",
"mkdirp": "^1.0.4",
"openurl": "^1.1.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/plugin-help": "^3.2.0",
"@oclif/test": "^1.2.6",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"globby": "^10.0.2",
"mocha": "^5.2.0",
"nock": "^13.0.4",
"nyc": "^14.1.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/PhinCo/heroku-postico",
"keywords": [
"heroku",
"postico",
"postgres",
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./src/commands",
"bin": "heroku postico:",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "PhinCo/heroku-postico",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"xversion": "oclif-dev readme && git add README.md"
}
}