-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
114 lines (114 loc) · 3.56 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
{
"name": "git-easy",
"displayName": "Git Easy",
"description": "Making git easy and convenient",
"version": "1.11.0",
"publisher": "bibhasdn",
"icon": "images/logo_128.png",
"repository": {
"type": "git",
"url": "https://github.com/iambibhas/vscode-git-easy"
},
"bugs": {
"url": "https://github.com/iambibhas/vscode-git-easy/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.0.0"
},
"dependencies": {
"simple-git": "*"
},
"categories": [
"Other"
],
"keywords": [
"git",
"github",
"sublime",
"sublimetext",
"vcs"
],
"activationEvents": [
"onCommand:giteasy.countChars",
"onCommand:giteasy.doOriginCurrentPull",
"onCommand:giteasy.doOriginCurrentPush",
"onCommand:giteasy.doRemoteCurrentPush",
"onCommand:giteasy.doStatus",
"onCommand:giteasy.doAdd",
"onCommand:giteasy.doAddAll",
"onCommand:giteasy.doAddCurrentFile",
"onCommand:giteasy.doUnstageCurrentFile",
"onCommand:giteasy.doCommit",
"onCommand:giteasy.doInit",
"onCommand:giteasy.doAddOrigin",
"onCommand:giteasy.doAddRemote",
"onCommand:giteasy.doChangeBranch",
"onCommand:giteasy.doCreateBranch",
"onCommand:giteasy.doLogAll",
"onCommand:giteasy.doLogCurrentFile",
"onCommand:giteasy.doCheckoutCurrentFile"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "giteasy.doInit",
"title": "Git Easy: Init"
}, {
"command": "giteasy.doOriginCurrentPull",
"title": "Git Easy: Pull Current Branch from Origin"
}, {
"command": "giteasy.doOriginCurrentPush",
"title": "Git Easy: Push Current Branch to Origin"
}, {
"command": "giteasy.doRemoteCurrentPush",
"title": "Git Easy: Push Current Branch"
}, {
"command": "giteasy.doAdd",
"title": "Git Easy: Add File/Directory"
}, {
"command": "giteasy.doAddAll",
"title": "Git Easy: Add All Modified"
}, {
"command": "giteasy.doAddCurrentFile",
"title": "Git Easy: Add Current File"
}, {
"command": "giteasy.doUnstageCurrentFile",
"title": "Git Easy: Unstage Current File"
}, {
"command": "giteasy.doStatus",
"title": "Git Easy: Status"
}, {
"command": "giteasy.doCommit",
"title": "Git Easy: Commit"
}, {
"command": "giteasy.doAddOrigin",
"title": "Git Easy: Add Origin"
}, {
"command": "giteasy.doAddRemote",
"title": "Git Easy: Add Remote"
}, {
"command": "giteasy.doChangeBranch",
"title": "Git Easy: Change/Checkout Existing Branch"
}, {
"command": "giteasy.doCreateBranch",
"title": "Git Easy: Create New Branch"
}, {
"command": "giteasy.doLogAll",
"title": "Git Easy: Log All"
}, {
"command": "giteasy.doLogCurrentFile",
"title": "Git Easy: Log Current File"
}, {
"command": "giteasy.doCheckoutCurrentFile",
"title": "Git Easy: Checkout Current File"
}]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0",
"simple-git": "*"
}
}