forked from ClementVidal/vscode-companion-file-switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.35 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
{
"name": "companion-file-switcher",
"displayName": "Companion file switcher",
"description": "Switch accross companion files",
"version": "0.2.0",
"publisher": "ClementVidal",
"license": "MIT",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.companionFileSwitcher.switch"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.companionFileSwitcher.switch",
"title": "Switch between companion files"
}
],
"configuration": {
"type": "object",
"title": "Companion file switcher configuration",
"properties": {
"companionFileSwitcher.friendlyName": {
"type": "object",
"default": {
"component.ts": "Component",
"service.ts": "Service",
"pipe.ts": "Pipe",
"test.ts": "Test",
"directive.ts": "Directive",
"routing.ts": "Routes",
"guard.ts": "Guard",
"component.html": "Component view",
"component.scss": "Component style",
"component.spec": "Component Spec"
},
"description": "Companion file switcher: map an extension to it's friendly name"
}
}
},
"keybindings": [
{
"command": "extension.companionFileSwitcher.switch",
"key": "ctrl+shift+c ctrl+shift+f",
"when": "editorTextFocus"
}
]
},
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/ClementVidal/vscode-companion-file-switcher"
},
"bugs": {
"url": "https://github.com/ClementVidal/vscode-companion-file-switcher/issues"
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^6.0.40",
"typescript": "^2.0.3",
"vscode": "^1.1.21"
}
}