-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
109 lines (109 loc) · 3.36 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
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
{
"name": "console-log",
"displayName": "Console Log",
"description": "Create console.log lines faster",
"version": "0.0.14",
"publisher": "Luis",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.clog"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.clog",
"title": "Console.log"
},
{
"command": "extension.clogBefore",
"title": "Console.log.before"
}
],
"keybindings": [
{
"mac": "alt+-",
"win": "alt+-",
"linux": "alt+-",
"key": "alt+-",
"when": "editorTextFocus",
"command": "extension.clog"
},
{
"mac": "alt+shift+-",
"win": "alt+shift+-",
"linux": "alt+shift+-",
"key": "alt+shift+-",
"when": "editorTextFocus",
"command": "extension.clogBefore"
},
{
"mac": "alt+/",
"win": "alt+/",
"linux": "alt+/",
"key": "alt+/",
"when": "editorTextFocus",
"command": "extension.clog"
},
{
"mac": "alt+shift+/",
"win": "alt+shift+/",
"linux": "alt+shift+/",
"key": "alt+shift+/",
"when": "editorTextFocus",
"command": "extension.clogBefore"
}
],
"configuration": {
"type": "object",
"title": "Console Log",
"properties": {
"consoleLog.wrapperExpression": {
"type": "string",
"default": "",
"description": "Expression to call in console log, with the value represented as $. (E.g. JSON.stringify($)).",
"scope": "resource"
},
"consoleLog.invertPosition": {
"type": "boolean",
"default": false,
"description": "Changes the Keybindings, setting by default the console.log before the current line with option+-",
"scope": "resource"
}
}
},
"configurationAttributes": {
"launch": {
"required": [],
"properties": {
"wrapperExpression": {
"type": "string",
"description": "Expression to call in console log, with the value represented as $. (E.g. JSON.stringify($)).",
"default": ""
}
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"eslint": "^8.10.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/LuisEGR/console-log-vscode.git"
}
}