-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"name": "laravel-goto-controller",
"displayName": "laravel-goto-controller",
"description": "Alt + click to navigate from a route to a respective controller file",
"version": "0.0.15",
"publisher": "stef-k",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#FF544A",
"theme": "light"
},
"activationEvents": [
"*"
],
"icon": "images/icon.png",
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "",
"@types/node": "",
"typescript": "",
"vscode": "^1.1.33"
},
"dependencies": {
"n-readlines": "^1.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stef-k/laravel-goto-controller.git"
},
"bugs": {
"url": "https://github.com/stef-k/laravel-goto-controller/issues"
},
"homepage": "https://github.com/stef-k/laravel-goto-controller/blob/master/README.md",
"contributes": {
"configuration": {
"type": "object",
"title": "Laravel goto controller configuration",
"properties": {
"laravel_goto_controller.pathController": {
"type": "string",
"default": "/app/Http/Controllers",
"description": "Root path to the controllers folder"
}
}
}
}
}