This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 1.7 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
{
"name": "@heroku-cli/plugin-git",
"description": "Heroku CLI plugin to manage local git repos.",
"version": "3.0.2",
"author": "Jeff Dickey (@jdxcode)",
"bugs": {
"url": "https://github.com/heroku/heroku-git/issues"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1.6.18",
"debug": "3.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^1",
"@oclif/plugin-legacy": "^1.0.15",
"@oclif/test": "^1",
"@oclif/tslint": "^1",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"@types/supports-color": "^5.3.0",
"chai": "^4",
"globby": "^8",
"mocha": "^5",
"nock": "^9.2.5",
"nyc": "^11",
"ts-node": "^6",
"tslib": "^1",
"tslint": "^5",
"typescript": "^2.8"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/heroku/heroku-git",
"keywords": [
"heroku-plugin"
],
"license": "ISC",
"oclif": {
"topics": {
"git": {
"description": "manage local git repository for app"
}
},
"commands": "./lib/commands",
"bin": "oclif-example",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/heroku-git.git"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"prepublishOnly": "oclif-dev manifest",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
}
}