-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
97 lines (97 loc) · 2.63 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
{
"name": "vscode-caniuse",
"displayName": "vscode-caniuse",
"description": "Browser support tables for modern web technologies - plugin for vscode",
"version": "0.5.0",
"publisher": "agauniyal",
"icon": "icon.svg",
"galleryBanner": {
"color": "#E23E57",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/agauniyal/vscode-caniuse/issues",
"email": "agauniyal@outlook.com"
},
"homepage": "https://github.com/agauniyal/vscode-caniuse/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/agauniyal/vscode-caniuse.git"
},
"engines": {
"vscode": "^1.0.0"
},
"license": "SEE LICENSE IN LICENSE",
"categories": [
"Other",
"Languages"
],
"keywords": [
"caniuse",
"can i use",
"css",
"web",
"html"
],
"activationEvents": [
"onCommand:extension.caniuse",
"onCommand:extension.setBrowserScope",
"onLanguage:css",
"onLanguage:sass",
"onLanguage:less",
"onLanguage:html"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.caniuse",
"title": "Can I Use"
},
{
"command": "extension.setBrowserScope",
"title": "Set Browser Scope - Can I Use"
}
],
"keybindings": [
{
"command": "extension.caniuse",
"key": "alt+i",
"when": "editorHasSelection"
},
{
"command": "extension.setBrowserScope",
"key": "alt+b"
}
],
"configuration": {
"type": "object",
"title": "Can I Use configuration",
"properties": {
"caniuse.show_all": {
"type": "boolean",
"default": false,
"description": "Specifies visiblity of all browsers in status bar."
},
"caniuse.browser_scope": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the browser scope to use."
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0"
},
"dependencies": {
"caniuse-api": "^1.5.1",
"opn": "^4.0.2"
}
}