Skip to content

Commit 0b02d18

Browse files
author
Ziya SARIKAYA
committed
1.2.4
1 parent 876d956 commit 0b02d18

File tree

1 file changed

+106
-106
lines changed

1 file changed

+106
-106
lines changed

package.json

Lines changed: 106 additions & 106 deletions
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,114 @@
11
{
2-
"name": "vscode-open-in-github",
3-
"displayName": "Open in GitHub / Bitbucket / VisualStudio.com !",
4-
"description": "Jump to a source code line in Github / Bitbucket / VisualStudio.com !",
5-
"icon": "images/icon_200.png",
6-
"version": "1.2.3",
7-
"publisher": "ziyasal",
8-
"license": "SEE LICENSE IN LICENSE.md",
9-
"galleryBanner": {
10-
"color": "#E9EBED",
11-
"theme": "light"
12-
},
13-
"homepage": "https://github.com/ziyasal/vscode-open-in-github/blob/master/README.md",
14-
"repository": {
15-
"type": "git",
16-
"url": "https://github.com/ziyasal/vscode-open-in-github.git"
17-
},
18-
"bugs": {
19-
"url": "https://github.com/ziyasal/vscode-open-in-github/issues"
20-
},
21-
"categories": [
22-
"Other"
2+
"name": "vscode-open-in-github",
3+
"displayName": "Open in GitHub / Bitbucket / VisualStudio.com !",
4+
"description": "Jump to a source code line in Github / Bitbucket / VisualStudio.com !",
5+
"icon": "images/icon_200.png",
6+
"version": "1.2.4",
7+
"publisher": "ziyasal",
8+
"license": "SEE LICENSE IN LICENSE.md",
9+
"galleryBanner": {
10+
"color": "#E9EBED",
11+
"theme": "light"
12+
},
13+
"homepage": "https://github.com/ziyasal/vscode-open-in-github/blob/master/README.md",
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/ziyasal/vscode-open-in-github.git"
17+
},
18+
"bugs": {
19+
"url": "https://github.com/ziyasal/vscode-open-in-github/issues"
20+
},
21+
"categories": [
22+
"Other"
23+
],
24+
"engines": {
25+
"vscode": "0.10.x"
26+
},
27+
"activationEvents": [
28+
"onCommand:extension.openInGitHub",
29+
"onCommand:extension.copyGitHubLinkToClipboard",
30+
"onCommand:extension.openPrGitProvider"
31+
],
32+
"main": "./src/extension",
33+
"contributes": {
34+
"commands": [
35+
{
36+
"command": "extension.openInGitHub",
37+
"title": "Open in GitHub"
38+
},
39+
{
40+
"command": "extension.copyGitHubLinkToClipboard",
41+
"title": "Copy GitHub link to clipboard"
42+
},
43+
{
44+
"command": "extension.openPrGitProvider",
45+
"title": "Open Pull Request"
46+
}
2347
],
24-
"engines": {
25-
"vscode": "0.10.x"
48+
"configuration": {
49+
"type": "object",
50+
"title": "Open in Github extension configuration",
51+
"properties": {
52+
"openInGitHub.gitHubDomain": {
53+
"type": [
54+
"string"
55+
],
56+
"default": "github.com",
57+
"description": "Configure a custom Github domain. Useful for Github entreprise"
58+
}
59+
}
2660
},
27-
"activationEvents": [
28-
"onCommand:extension.openInGitHub",
29-
"onCommand:extension.copyGitHubLinkToClipboard",
30-
"onCommand:extension.openPrGitProvider"
61+
"keybindings": [
62+
{
63+
"command": "extension.openInGitHub",
64+
"key": "ctrl+l g",
65+
"mac": "ctrl+l g"
66+
},
67+
{
68+
"command": "extension.copyGitHubLinkToClipboard",
69+
"key": "ctrl+l c",
70+
"mac": "ctrl+l c"
71+
},
72+
{
73+
"command": "extension.openPrGitProvider",
74+
"key": "ctrl+l p",
75+
"mac": "ctrl+l p"
76+
}
3177
],
32-
"main": "./src/extension",
33-
"contributes": {
34-
"commands": [
35-
{
36-
"command": "extension.openInGitHub",
37-
"title": "Open in GitHub"
38-
},
39-
{
40-
"command": "extension.copyGitHubLinkToClipboard",
41-
"title": "Copy GitHub link to clipboard"
42-
},
43-
{
44-
"command": "extension.openPrGitProvider",
45-
"title": "Open Pull Request"
46-
}
47-
],
48-
"configuration": {
49-
"type": "object",
50-
"title": "Open in Github extension configuration",
51-
"properties": {
52-
"openInGitHub.gitHubDomain": {
53-
"type": [
54-
"string"
55-
],
56-
"default": "github.com",
57-
"description": "Configure a custom Github domain. Useful for Github entreprise"
58-
}
59-
}
78+
"menus": {
79+
"explorer/context": [
80+
{
81+
"command": "extension.openInGitHub"
6082
},
61-
"keybindings": [
62-
{
63-
"command": "extension.openInGitHub",
64-
"key": "ctrl+l g",
65-
"mac": "ctrl+l g"
66-
},
67-
{
68-
"command": "extension.copyGitHubLinkToClipboard",
69-
"key": "ctrl+l c",
70-
"mac": "ctrl+l c"
71-
},
72-
{
73-
"command": "extension.openPrGitProvider",
74-
"key": "ctrl+l p",
75-
"mac": "ctrl+l p"
76-
}
77-
],
78-
"menus": {
79-
"explorer/context": [
80-
{
81-
"command": "extension.openInGitHub"
82-
},
83-
{
84-
"command": "extension.copyGitHubLinkToClipboard"
85-
},
86-
{
87-
"command": "extension.openPrGitProvider"
88-
}
89-
]
83+
{
84+
"command": "extension.copyGitHubLinkToClipboard"
85+
},
86+
{
87+
"command": "extension.openPrGitProvider"
9088
}
91-
},
92-
"scripts": {
93-
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
94-
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
95-
"test:linuxOSX": "CODE_TESTS_WORKSPACE=$(cd \"$(dirname \"$0\")\" && pwd -P)/test/sampleTestData node ./node_modules/vscode/bin/test ",
96-
"test:windows": "cd && code -n %CD%/test/sampleTestData --extensionDevelopmentPath=%CD% --extensionTestsPath=%CD%/test --verbose",
97-
"test": "node ./testScript",
98-
"postinstall": "node ./node_modules/vscode/bin/install"
99-
},
100-
"devDependencies": {
101-
"chai": "^3.5.0",
102-
"proxyquire": "^1.7.10",
103-
"typescript": "^1.6.2",
104-
"vscode": "0.11.13"
105-
},
106-
"dependencies": {
107-
"copy-paste": "^1.1.4",
108-
"find-parent-dir": "^0.3.0",
109-
"git-rev-2": "^0.1.0",
110-
"git-url-parse": "^6.1.0",
111-
"open": "0.0.5",
112-
"parse-git-config": "^0.3.1"
89+
]
11390
}
91+
},
92+
"scripts": {
93+
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
94+
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
95+
"test:linuxOSX": "CODE_TESTS_WORKSPACE=$(cd \"$(dirname \"$0\")\" && pwd -P)/test/sampleTestData node ./node_modules/vscode/bin/test ",
96+
"test:windows": "cd && code -n %CD%/test/sampleTestData --extensionDevelopmentPath=%CD% --extensionTestsPath=%CD%/test --verbose",
97+
"test": "node ./testScript",
98+
"postinstall": "node ./node_modules/vscode/bin/install"
99+
},
100+
"devDependencies": {
101+
"chai": "^3.5.0",
102+
"proxyquire": "^1.7.10",
103+
"typescript": "^1.6.2",
104+
"vscode": "0.11.13"
105+
},
106+
"dependencies": {
107+
"copy-paste": "^1.1.4",
108+
"find-parent-dir": "^0.3.0",
109+
"git-rev-2": "^0.1.0",
110+
"git-url-parse": "^6.1.0",
111+
"open": "0.0.5",
112+
"parse-git-config": "^0.3.1"
113+
}
114114
}

0 commit comments

Comments
 (0)