forked from vector-of-bool/vscode-gitflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
134 lines (134 loc) · 3.48 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
130
131
132
133
134
{
"name": "gitflow",
"displayName": "gitflow",
"description": "Gitflow integration and support in Visual Studio Code",
"version": "2.1.0",
"publisher": "buianhthang",
"repository": {
"type": "git",
"url": "https://github.com/buianhthang/vscode-gitflow"
},
"bugs": {
"url": "https://github.com/buianhthang/vscode-gitflow/issues"
},
"homepage": "https://github.com/buianhthang/vscode-gitflow",
"keywords": [
"git",
"flow"
],
"engines": {
"vscode": "^1.45.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.squashFeatureDuringMerge": {
"type": "boolean",
"default": false,
"description": "Squash feature during merge"
},
"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": {
"@types/mocha": "^7.0.2",
"@types/node": "~13.13.5",
"@types/vscode": "1.45.0",
"mocha": "^7.1.2",
"typescript": "^3.8.3"
}
}