-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.76 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
{
"name": "goto-route-controller-laravel",
"displayName": "goto-route-controller-laravel",
"description": "laravel helper: go to route declaration, go to controller method declaration, find blade usage",
"version": "2.2.0",
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"publisher": "erlangparasu",
"homepage": "https://github.com/erlangparasu/goto-route-controller-laravel/blob/master/README.md",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/erlangparasu/goto-route-controller-laravel"
},
"activationEvents": [
"workspaceContains:**/artisan",
"workspaceContains:**/server.php",
"workspaceContains:**/composer.json"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.enableLaravelRouteClassOpener",
"title": "Enable LaravelRouteClassOpener"
},
{
"command": "extension.openControllerClassFile",
"title": "EP: Go to Controller"
},
{
"command": "extension.openRoutesDeclarationFile",
"title": "EP: Go to Route"
},
{
"command": "extension.findBladeUsage",
"title": "EP: Find blade usage"
}
],
"menus": {
"editor/context": [
{
"command": "extension.openControllerClassFile",
"when": "editorTextFocus && resourceExtname == .php && resourceFilename =~ /(web|api)\\.php/",
"group": "navigation"
},
{
"command": "extension.openRoutesDeclarationFile",
"when": "editorTextFocus && resourceExtname == .php && resourceFilename =~ /\\.php/",
"group": "navigation"
},
{
"command": "extension.findBladeUsage",
"when": "editorTextFocus && resourceExtname == .php && resourceFilename =~ /\\.(blade)\\.php/",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.12.21",
"ts-loader": "6.2.1",
"tslint": "^5.20.1",
"typescript": "3.7.2",
"vsce": "1.69.0",
"vscode": "^1.1.36"
}
}