-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "contextualduplicate",
"displayName": "Contextual Duplicate",
"description": "This extension duplicates text based on the context. If text is selected, only the selected text will be duplicated. Otherwise, the complete line will be duplicated.",
"version": "0.2.0",
"publisher": "lafe",
"author": "Lars Fernhomberg",
"homepage": "https://github.com/lafe/ContextualDuplicate",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"license": "Apache-2.0",
"repository": {
"type": "GitHub",
"url": "https://github.com/lafe/ContextualDuplicate.git"
},
"bugs": {
"url": "https://github.com/lafe/ContextualDuplicate/issues"
},
"activationEvents": [
"onCommand:lafe.duplicateCode"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "lafe.duplicateCode",
"title": "Duplicate code"
}
],
"keybindings": [
{
"command": "lafe.duplicateCode",
"key": "ctrl+k d"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
},
"icon": "icon/icon.png"
}