-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.99 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
{
"name": "vscode-caniuse",
"displayName": "Can I Use",
"description": "Compatibility check for HTML5, CSS3, SVG, New JS API based on http://caniuse.com/ directly from Visual Studio Code",
"version": "0.5.4",
"publisher": "akamud",
"license": "MIT",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.canIUse"
],
"author": "akamud",
"keywords": [
"CanIUse",
"CSS3",
"HTML5",
"Compatibility"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#007ACC",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/akamud/vscode-caniuse/issues"
},
"homepage": "https://github.com/akamud/vscode-caniuse/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/akamud/vscode-caniuse.git"
},
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.canIUse",
"title": "Can I Use"
}
],
"keybindings": {
"when": "editorTextFocus",
"command": "extension.canIUse",
"key": "ctrl+shift+i",
"mac": "ctrl+c"
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec --ui tdd ./out/test/extension.test.js",
"test-local": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --ui tdd ./out/test/extension.test.js"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x",
"istanbul": "^0.4.1",
"mocha": "^2.4.5",
"coveralls": "^2.11.4",
"sinon": "^1.17.2"
},
"dependencies": {
"request": "^2.66.0"
}
}