-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.08 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.08 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "classio",
"displayName": "Class IO",
"description": "Class IO shows class relationships with its interfaces and parent class in a non-obstructive way. Class IO is an alternative to ClassLens.",
"version": "0.3.4",
"publisher": "rexebin",
"engines": {
"vscode": "^1.22.0"
},
"icon": "classio.png",
"repository": {
"url": "https://github.com/rexebin/classio"
},
"categories": [
"Languages",
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"title": "ClassIO",
"properties": {
"classio.overrideSymbol": {
"type": "string",
"default": "o ",
"description": "The symbol will be attached to before override member."
},
"classio.overrideSymbolColor": {
"type": "string",
"default": "rgba(128,128,128,1)",
"description": "The color of attached override symbol."
},
"classio.implementationSymbol": {
"type": "string",
"default": "i ",
"description": "The symbol will be attached to before interface implementation members."
},
"classio.implementationSymbolColor": {
"type": "string",
"default": "rgba(128,128,128,1)",
"description": "The color of attached implementation symbol."
},
"classio.debugMode": {
"type": "boolean",
"default": false,
"description": "Debug mode."
},
"classio.timeOut": {
"type": "number",
"default": 500,
"description": "How long the user should idle for before Class IO start updating."
}
}
},
"commands": [
{
"command": "classio.cleanCache",
"title": "Classio: Clear Cache"
},
{
"command": "classio.goToParent",
"title": "Go To Parent"
}
],
"menus": {
"editor/context": [
{
"command": "classio.goToParent",
"group": "navigation",
"when": "editorLangId=='typescript'"
},
{
"command": "classio.goToParent",
"group": "navigation",
"when": "editorLangId=='javascript'"
}
]
},
"keybindings": [
{
"command": "classio.goToParent",
"key": "shift+alt+g",
"when": "editorLangId=='javascript'"
},
{
"command": "classio.goToParent",
"key": "shift+alt+g",
"when": "editorLangId=='typescript'"
}
]
},
"keywords": [
"typescript",
"class",
"interface",
"hierarchy",
"inheritance"
],
"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": "^2.2.48",
"@types/node": "^7.0.43",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"dependencies": {
"typescript": ">=2.6.1"
}
}