-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "go-to-method",
"displayName": "Go To Method",
"description": "Adds the ability to go to only method symbols declared in the active document",
"version": "0.2.0",
"publisher": "trixnz",
"homepage": "https://github.com/trixnz/vscode-go-to-method#readme",
"repository": {
"type": "git",
"url": "https://github.com/trixnz/vscode-go-to-method"
},
"bugs": {
"url": "https://github.com/trixnz/vscode-go-to-method/issues"
},
"license": "MIT",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#2d2d2d",
"theme": "dark"
},
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:workbench.action.gotoMethod"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "workbench.action.gotoMethod",
"title": "Go to Method in File..."
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^13.7.1",
"tslint": "^6.0.0",
"typescript": "^3.7.5",
"vscode": "^1.1.36"
}
}