forked from mishkinf/vscode-goto-next-previous-member
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.38 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
{
"name": "goto-next-previous-member",
"displayName": "Go to Next/Previous Member",
"description": "Visual Studio Code Extenion to navigate through the functions, variables, and classes using quick and easy keycommands similar to functionality provided by IntelliJ IDE's (next/previous function) or Resharper (next/previous member)",
"version": "0.0.5",
"publisher": "mishkinf",
"icon": "logo/icon.png",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/mishkinf/vscode-goto-next-previous-member/issues"
},
"homepage": "https://github.com/mishkinf/vscode-goto-next-previous-member",
"repository": {
"type": "git",
"url": "https://github.com/mishkinf/vscode-goto-next-previous-member.git"
},
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "gotoNextPreviousMember.nextMember",
"title": "Go to Next Member"
},
{
"command": "gotoNextPreviousMember.previousMember",
"title": "Go to Previous Member"
}
],
"keybindings": [
{
"command": "gotoNextPreviousMember.nextMember",
"key": "ctrl+down"
},
{
"command": "gotoNextPreviousMember.previousMember",
"key": "ctrl+up"
}
],
"configuration": {
"type": "object",
"title": "Go to Next/Previous Member Configuration",
"properties": {
"gotoNextPreviousMember.symbolKinds": {
"type": "array",
"default": [],
"description": "Specifies the kinds of symbols to include in the search."
}
}
}
},
"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": "^2.2.42",
"@types/node": "^8.10.25",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"vscode": "^1.1.21"
}
}