-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
132 lines (132 loc) · 3.23 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": "sharecode",
"version": "0.4.1",
"publisher": "RolandGreim",
"engines": {
"vscode": "^1.6.0"
},
"license": "GPL-3.0",
"displayName": "Share Code",
"description": "Share your Code on GitHub Gist, GitLab or Pastebin.",
"categories": [
"Other"
],
"keywords": [
"GitHub",
"GitLab",
"Pastebin",
"Gist",
"Share"
],
"galleryBanner": {
"color": "#008080",
"theme": "light"
},
"main": "./out/src/extension",
"contributes": {
"menus": {
"editor/title": [
{
"command": "extension.shareCode.share",
"title": "Share Code"
}
],
"editor/context": [
{
"command": "extension.shareCode.share",
"title": "Share Code"
}
]
},
"commands": [
{
"command": "extension.shareCode.share",
"title": "Share Code: share"
},
{
"command": "extension.shareCode.open",
"title": "Share Code: open"
}
],
"configuration": {
"type": "object",
"title": "Share Code configuration",
"properties": {
"shareCode.pastebin.username": {
"type": "string",
"default": "",
"description": "Cached pastebin username."
},
"shareCode.pastebin.authtoken": {
"type": "string",
"default": null,
"description": "Pastebin Authentication Token."
},
"shareCode.github.username": {
"type": "string",
"default": "",
"description": "Cached github username."
},
"shareCode.github.authtoken": {
"type": "string",
"default": null,
"description": "GitHub Authentication Token."
},
"shareCode.gitlab.baseurl": {
"type": "string",
"default": "https://gitlab.com/",
"description": "Baseurl of GitLab server."
},
"shareCode.gitlab.authtoken": {
"type": "string",
"default": null,
"description": "GitLab Authentication Token."
},
"shareCode.openSharedCodeInBrowser": {
"type": "boolean",
"default": true,
"description": "Open shared code in browser after sharing."
}
}
}
},
"activationEvents": [
"onCommand:extension.shareCode.open",
"onCommand:extension.shareCode.share"
],
"dependencies": {
"github": "^5.1.0",
"i18next": "^3.4.3",
"moment": "^2.15.1",
"opn": "^4.0.1",
"request": "^2.69.0",
"request-promise": "^4.1.1",
"typescript": "^2.3.0",
"underscore": "^1.8.3",
"vscode": "^1.0.3",
"xml2js": "^0.4.16"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^2.3.3",
"typescript": "^2.1.4",
"vscode": "^1.0.3"
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"icon": "images/sharecode.svg",
"author": {
"name": "Roland Greim - http://www.rolandgreim.de/"
},
"repository": {
"type": "git",
"url": "https://github.com/tigerxy/VSCode-ShareCode"
},
"bugs": {
"url": "https://github.com/tigerxy/VSCode-ShareCode/issues"
}
}