-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 997 Bytes
/
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
{
"name": "colored-console-log",
"displayName": "Colored Console Log",
"description": "Creates colored console.log messages for browser",
"version": "1.1.0",
"publisher": "rehfres",
"license": "MIT",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other"
],
"repository": "https://github.com/rehfres/colored-console-log",
"icon": "icon.png",
"contributes": {
"keybindings": [
{
"command": "extension.coloredPrimitives",
"key": "ctrl+l ctrl+l",
"mac": "cmd+l cmd+l",
"when": "editorTextFocus"
},
{
"command": "extension.coloredObject",
"key": "ctrl+l ctrl+o",
"mac": "cmd+l cmd+o",
"when": "editorTextFocus"
}
]
},
"activationEvents": [
"*"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "7.0.4",
"@types/vscode": "^1.18.0",
"typescript": "^3.1.6",
"vscode-test": "^1.3.0"
}
}