-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.45 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.45 KB
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
{
"name": "vscode-github-file-folder-url",
"version": "1.3.0",
"publisher": "cycloware",
"displayName": "VsCode - Github-File-Folder-Url",
"description": "VsCode Extension that gets a Github url with optional line selection for files and folders.",
"repository": {
"type": "git",
"url": "https://github.com/Cycloware/vscode-github-file-folder-url"
},
"homepage": "https://github.com/Cycloware/vscode-github-file-folder-url/blob/master/README.md",
"bugs": "https://github.com/Cycloware/vscode-github-file-folder-url/issues",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#009933",
"theme": "dark"
},
"engines": {
"vscode": "0.10.x"
},
"categories": [
"Other",
"Snippets"
],
"activationEvents": [
"onCommand:extension.github-file-folder-url.copyGithubUrl",
"onCommand:extension.github-file-folder-url.copyGithubUrl-simple",
"onCommand:extension.github-file-folder-url.copyGithubUrlWithSelection",
"onCommand:extension.github-file-folder-url.copyGithubUrlWithSelection-simple",
"onCommand:extension.github-file-folder-url.copyGithubUrlForAllOpenFiles",
"onCommand:extension.github-file-folder-url.copyGithubUrlForAllOpenFiles-simple"
],
"main": "./out/extension",
"contributes": {
"menus": {
"explorer/context": [
{
"command": "extension.github-file-folder-url.copyGithubUrl",
"title": "Copy GitHub URL"
},
{
"command": "extension.github-file-folder-url.copyGithubUrl-simple",
"title": "Copy RAW GitHub URL"
}
]
},
"commands": [
{
"command": "extension.github-file-folder-url.copyGithubUrl",
"title": "Copy GitHub URL"
},
{
"command": "extension.github-file-folder-url.copyGithubUrl-simple",
"title": "Copy RAW GitHub URL"
},
{
"command": "extension.github-file-folder-url.copyGithubUrlWithSelection",
"title": "Copy GitHub URL with Selection"
},
{
"command": "extension.github-file-folder-url.copyGithubUrlWithSelection-simple",
"title": "Copy RAW GitHub URL with Selection"
},
{
"command": "extension.github-file-folder-url.copyGithubUrlForAllOpenFiles",
"title": "Copy GitHub URL for all open files"
},
{
"command": "extension.github-file-folder-url.copyGithubUrlForAllOpenFiles-simple",
"title": "Copy RAW GitHub URL for all open files"
}
],
"keybindings": [
{
"command": "extension.github-file-folder-url.copyGithubUrl",
"key": "ctrl+alt+g"
},
{
"command": "extension.github-file-folder-url.copyGithubUrlWithSelection",
"key": "ctrl+alt+shift+g"
},
{
"command": "extension.github-file-folder-url.copyGithubUrlForAllOpenFiles",
"key": "ctrl+alt+z"
}
]
},
"scripts": {
"tsc": "rimraf ./out && clscr && tsc --watch --pretty",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/copy-paste": "^1.1.30",
"@types/fs-extra-promise": "0.0.31",
"@types/knex": "0.0.44",
"@types/uuid": "2.0.29",
"rimraf": "2.6.1",
"typescript": "2.2.2",
"vscode": "1.1.0"
},
"dependencies": {
"copy-paste": "1.3.0",
"git-branch": "0.3.0",
"github-url-from-git": "1.5.0",
"parse-git-config": "1.1.1",
"fs-extra-promise": "0.4.1",
"module-alias": "2.0.0",
"tslib": "^1.6.0"
}
}