-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
129 lines (129 loc) · 4.04 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "gitflow",
"displayName": "gitflow",
"description": "Gitflow integration and support in Visual Studio Code",
"version": "1.2.1",
"publisher": "vector-of-bool",
"repository": {
"type": "git",
"url": "https://github.com/vector-of-bool/vscode-gitflow"
},
"bugs": {
"url": "https://github.com/vector-of-bool/vscode-gitflow/issues"
},
"homepage": "https://github.com/vector-of-bool/vscode-gitflow",
"keywords": [
"git",
"flow"
],
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#09585e",
"theme": "dark"
},
"icon": "res/icon_128.png",
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "gitflow.initialize",
"title": "Initialize repository for gitflow",
"category": "Gitflow"
},
{
"command": "gitflow.featureStart",
"title": "Feature: start",
"category": "Gitflow"
},
{
"command": "gitflow.featureRebase",
"title": "Feature: rebase",
"category": "Gitflow"
},
{
"command": "gitflow.featureFinish",
"title": "Feature: finish",
"category": "Gitflow"
},
{
"command": "gitflow.bugfixStart",
"title": "Bugfix: start",
"category": "Gitflow"
},
{
"command": "gitflow.bugfixRebase",
"title": "Bugfix: rebase",
"category": "Gitflow"
},
{
"command": "gitflow.bugfixFinish",
"title": "Bugfix: finish",
"category": "Gitflow"
},
{
"command": "gitflow.releaseStart",
"title": "Release: start",
"category": "Gitflow"
},
{
"command": "gitflow.releaseFinish",
"title": "Release: finish",
"category": "Gitflow"
},
{
"command": "gitflow.hotfixStart",
"title": "Hotfix: start",
"category": "Gitflow"
},
{
"command": "gitflow.hotfixFinish",
"title": "Hotfix: finish",
"category": "Gitflow"
}
],
"configuration": {
"properties": {
"gitflow.deleteBranchOnFinish": {
"type": "boolean",
"default": true,
"description": "After finishing a branch, delete the branch"
},
"gitflow.deleteRemoteBranches": {
"type": "boolean",
"default": true,
"description": "If true, and `gitflow.deleteBranchOnFinish` is true, remote branches will be deleted when finishing a branch"
},
"gitflow.default.development": {
"type": "string",
"default": "develop",
"description": "Default name for the development branch [develop]"
},
"gitflow.default.production": {
"type": "string",
"default": "master",
"description": "Default name for the production branch [master]"
}
}
}
},
"scripts": {
"vscode:prepublish": "./node_modules/typescript/bin/tsc -p ./",
"compile": "./node_modules/typescript/bin/tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"@types/node": "~7.0.31",
"mocha": "^3.2.0",
"@types/mocha": "^2.2.34",
"vscode": "^1.1.0"
}
}