-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "scope-bar",
"displayName": "Scope Bar",
"description": "Showing the scope symbol name of the cursor on status bar.",
"version": "0.2.1",
"icon": "images/icon.png",
"publisher": "amos402",
"author": {
"name": "amos402",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/amos402/vscode-scope-bar",
"repository": {
"type": "git",
"url": "https://github.com/amos402/vscode-scope-bar"
},
"bugs": {
"url": "https://github.com/amos402/vscode-scope-bar/issues"
},
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "scopebar.ShowScopeSymbols",
"title": "Show Scope's Symbols"
}
],
"keybindings": [
{
"command": "scopebar.ShowScopeSymbols",
"key": "ctrl+alt+p"
}
],
"configuration": [
{
"title": "ScopeBar.Navigate",
"properties": {
"scopebar.Navigate": {
"scope": "resource",
"type": "string",
"enum": [
"ScopeSymbol",
"FileSymbol"
],
"default": "ScopeSymbol",
"description": "Behavior for click status bar or command for 'ShowScopeSymbols'."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.1.4",
"vscode": "^1.1.25",
"mocha": "^2.3.3",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
}
}