-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (101 loc) · 2.96 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
{
"name": "gitpatch",
"displayName": "Git Patch",
"description": "Creates supplied diff output (i.e. 'a patch') and applies it to files. ",
"version": "0.2.1",
"publisher": "paragdiwan",
"engines": {
"vscode": "^1.19.0"
},
"author": {
"name": "Parag Diwan"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#f0efe7",
"theme": "light"
},
"icon": "images/git_icon.png",
"activationEvents": [
"onCommand:extension.gitCreatePatchFromStaged",
"onCommand:extension.gitCreatePatchFromUnstaged",
"onCommand:extension.gitApplyPatch"
],
"keywords": [
"git",
"patch",
"apply",
"git patch",
"git diff",
"diff"
],
"repository": {
"type": "git",
"url": "https://github.com/paragdiwan/vscode-git-patch"
},
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.gitCreatePatchFromStaged",
"title": "Git: Creates a patch from staged files"
},
{
"command": "extension.gitCreatePatchFromUnstaged",
"title": "Git: Creates a patch from unstaged files"
},
{
"command": "extension.gitApplyPatch",
"title": "Git: Apply a patch from existing patch file"
}
],
"menus": {
"scm/title": [
{
"command": "extension.gitCreatePatchFromStaged",
"when": "scmProvider == git",
"group": "inline"
},
{
"command": "extension.gitCreatePatchFromUnstaged",
"when": "scmProvider == git",
"group": "inline"
},
{
"command": "extension.gitApplyPatch",
"when": "scmProvider == git",
"group": "inline"
}
],
"explorer/context": [
{
"command": "extension.gitCreatePatchFromStaged",
"group": "MyGroup@1"
},
{
"command": "extension.gitCreatePatchFromUnstaged",
"group": "MyGroup@1"
},
{
"command": "extension.gitApplyPatch",
"group": "MyGroup@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.1.37",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}