forked from Shaggy13spe/gitflow4code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.51 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.51 KB
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
{
"name": "gitflow4code",
"displayName": "GitFlow 4 Code",
"description": "Adds GitFlow support to VS Code",
"icon": "images/gitflow.jpg",
"version": "0.0.5",
"publisher": "GreatMinds",
"license": "SEE LICENSE IN LICENSE or README.MD",
"homepage": "https://github.com/shaggy13spe/gitflow4code/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/shaggy13spe/gitflow4code/"
},
"categories": [
"Other"
],
"keywords": [
"git",
"gitflow",
"source control",
"branching"
],
"bugs": {
"url": "https://github.com/shaggy13spe/gitflow4code/issues"
},
"galleryBanner": {
"color": "#0000FF",
"theme": "dark"
},
"engines": {
"vscode": "^0.10.10"
},
"tags": [
"git",
"gitflow"
],
"activationEvents": [
"onCommand:gitflow.GitFlow",
"*"
],
"main": "./out/src/gitflow",
"contributes": {
"commands": [
{
"command": "gitflow.GitFlow",
"title": "GitFlow: Run GitFlow commands"
}
],
"keybindings": [
{
"key": "alt+ctrl+/",
"mac": "alt+cmd+/",
"command": "gitflow.GitFlow",
"when": "editorTextFocus"
}
]
},
"badges": [
{
"url": "http://vsmarketplacebadge.apphb.com/version-short/GreatMinds.gitflow4code.svg",
"href": "https://marketplace.visualstudio.com/items?itemName=GreatMinds.gitflow4code",
"description": "Extension version"
},
{
"url": "http://vsmarketplacebadge.apphb.com/installs/GreatMinds.gitflow4code.svg",
"href": "https://marketplace.visualstudio.com/items?itemName=GreatMinds.gitflow4code",
"description": "Extension installs"
},
{
"url": "http://vsmarketplacebadge.apphb.com/rating/GreatMinds.gitflow4code.svg",
"href": "https://marketplace.visualstudio.com/items?itemName=GreatMinds.gitflow4code#review-details",
"description": "Extension rating"
}
],
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
}
}