-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.41 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
{
"name": "file-ext-switcher",
"displayName": "file-ext-switcher",
"description": "Quickly switch between different files with the same name before the extension (e.g. angular2 component .ts, .css and .html files).",
"version": "3.2.0",
"publisher": "JohannesRudolph",
"engines": {
"vscode": "^1.8.0"
},
"categories": [
"Other"
],
"repository": {
"type": "github",
"url": "https://github.com/JohannesRudolph/vscode-file-ext-switcher"
},
"activationEvents": [
"onCommand:fileextswitch",
"onCommand:fileextswitch.css",
"onCommand:fileextswitch.html",
"onCommand:fileextswitch.js"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "fileextswitch",
"title": "Switch: to a companion file with the extension specified in the command arguments. Command argument can also control whether to open file in other editor column."
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"publish": "vsce publish"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.8.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}