-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
140 lines (140 loc) · 3.55 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
133
134
135
136
137
138
139
140
{
"name": "fileswitcher",
"displayName": "File Switcher",
"description": "An unopinionated extension that will quickly jump to a file, of any type or location in your project, related to the currently opened file.",
"version": "1.0.0",
"author": {
"name": "Johnathan Ludwig",
"email": "[email protected]"
},
"publisher": "johnathanludwig",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/johnathanludwig/vscode-fileswitcher.git"
},
"keywords": [
"file",
"switch",
"switcher",
"test",
"goto",
"jump",
"navigate",
"navigation",
"create"
],
"activationEvents": [
"onCommand:fileswitcher.switchFile",
"onCommand:fileswitcher.switchFileSplit",
"onCommand:fileswitcher.listMappings",
"onCommand:fileswitcher.createFile"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "FileSwitcher configuration",
"properties": {
"fileswitcher.mappings": {
"type": "array",
"default": [
{
"from": "(.+)\\.(.+)",
"to": ":1.test.:2"
},
{
"from": "(.+)\\.(.+)",
"to": ":1_test.:2"
},
{
"from": "(.+)\\.(.+)",
"to": ":1.spec.:2"
},
{
"from": "(.+)\\.(.+)",
"to": ":1_spec.:2"
},
{
"from": "(.+)(\\.|_)(test|spec)\\.(.+)",
"to": ":1.:4"
},
{
"from": "app/(.+)\\.(.+)",
"to": "test/:1_test.:2"
},
{
"from": "app/(.+)\\.(.+)",
"to": "spec/:1_spec.:2"
},
{
"from": "(test|spec)/(.+)(\\.|_)(test|spec)\\.(.+)",
"to": "app/:2.:5"
},
{
"from": "src/(.+)\\.(.+)",
"to": "test/:1.test.:2"
},
{
"from": "src/(.+)\\.(.+)",
"to": "test/:1.spec.:2"
}
],
"description": "List of file mappings"
}
}
},
"commands": [
{
"command": "fileswitcher.switchFile",
"title": "FileSwitcher: Switch File"
},
{
"command": "fileswitcher.switchFileSplit",
"title": "FileSwitcher: Switch File in Split Editor"
},
{
"command": "fileswitcher.listMappings",
"title": "FileSwitcher: List generated mappings for current file"
},
{
"command": "fileswitcher.createFile",
"title": "FileSwitcher: Create file from mapping"
}
],
"keybindings": [
{
"command": "fileswitcher.switchFile",
"key": "alt+r",
"when": "editorTextFocus"
},
{
"command": "fileswitcher.switchFileSplit",
"key": "alt+shift+r",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/node": "^16.6.1",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"typescript": "^4.5.4"
},
"packageManager": "[email protected]"
}