forked from fabiospampinato/vscode-open-in-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·132 lines (132 loc) · 3.6 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
{
"name": "vscode-open-in-github",
"displayName": "Open in GitHub",
"description": "Open the current project or file in github.com.",
"icon": "resources/logo-128x128.png",
"version": "1.1.5",
"license": "MIT",
"main": "out/extension.js",
"publisher": "fabiospampinato",
"activationEvents": [
"onCommand:openInGitHub.openProject",
"onCommand:openInGitHub.openFile",
"onCommand:openInGitHub.openFileBlame",
"onCommand:openInGitHub.openFileHistory",
"onCommand:openInGitHub.openIssues",
"onCommand:openInGitHub.openPullRequests"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Open in GitHub - Configuration",
"properties": {
"openInGitHub.github.domain": {
"type": "string",
"description": "Custom GitHub domain",
"default": "github.com"
},
"openInGitHub.remote.name": {
"type": "string",
"description": "Name of the remote repository",
"default": "origin"
},
"openInGitHub.remote.branch": {
"type": "string",
"description": "Name of the remote branch",
"default": "master"
},
"openInGitHub.useLocalBranch": {
"type": "boolean",
"description": "Use the local branch instead of the fixed remote branch",
"default": true
},
"openInGitHub.useLocalRange": {
"type": "boolean",
"description": "Highlight the local selection range, if there's one",
"default": true
},
"openInGitHub.useLocalLine": {
"type": "boolean",
"description": "Highlight the local line if there's no selection range",
"default": false
}
}
},
"commands": [
{
"command": "openInGitHub.openProject",
"title": "Open in GitHub: Project"
},
{
"command": "openInGitHub.openFile",
"title": "Open in GitHub: File"
},
{
"command": "openInGitHub.openFileHistory",
"title": "Open in GitHub: File History"
},
{
"command": "openInGitHub.openFileBlame",
"title": "Open in GitHub: File Blame"
},
{
"command": "openInGitHub.openIssues",
"title": "Open in GitHub: Issues"
},
{
"command": "openInGitHub.openPullRequests",
"title": "Open in GitHub: Pull Requests"
}
]
},
"scripts": {
"vscode:prepublish": "rm -rf out && webpack --mode production",
"publish": "vsce publish && npm publish",
"compile": "webpack --mode development",
"compile:watch": "webpack --mode development --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"bugs": {
"url": "https://github.com/fabiospampinato/vscode-open-in-github/issues"
},
"author": {
"name": "Fabio Spampinato",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/vscode-open-in-github.git"
},
"engines": {
"vscode": "^1.15.0"
},
"keywords": [
"vscode",
"extension",
"open",
"in",
"github"
],
"categories": [
"Other"
],
"dependencies": {
"@types/node": "^10.12.8",
"absolute": "0.0.1",
"find-up": "^2.1.0",
"json5": "^0.5.1",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"open": "0.0.5",
"pify": "^3.0.0",
"simple-git": "^1.92.0"
},
"devDependencies": {
"ts-loader": "^5.2.1",
"typescript": "~2.4.1",
"vscode": "^1.1.4",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}