-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
119 lines (119 loc) · 2.96 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
110
111
112
113
114
115
116
117
118
119
{
"name": "devdocstab",
"displayName": "DevDocs Tab",
"description": "An extension for Visual Studio Code to search for documentation on DevDocs.io faster by displaying it in a tab inside VS Code.",
"publisher": "Anan",
"version": "1.0.1",
"license": "MIT",
"icon": "images/webapp-icon-128.png",
"galleryBanner": {
"color": "#3c3f41",
"theme": "dark"
},
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Other",
"Programming Languages"
],"keywords": [
"docs",
"doc",
"documentation",
"documentations",
"search",
"keybindings",
"keybinding",
"devdocs",
"devdoc"
],
"homepage": "https://github.com/mohamed3nan/DevDocs-Tab",
"repository": {
"type": "git",
"url": "https://github.com/mohamed3nan/DevDocs-Tab"
},
"bugs": {
"url": "https://github.com/mohamed3nan/DevDocs-Tab/issues"
},
"badges": [
{
"url": "https://vsmarketplacebadge.apphb.com/version/Anan.devdocstab.svg",
"href": "https://marketplace.visualstudio.com/items/Anan.devdocstab",
"description": "Version"
},
{
"url": "https://vsmarketplacebadge.apphb.com/installs-short/Anan.devdocstab.svg",
"href": "https://marketplace.visualstudio.com/items/Anan.devdocstab",
"description": "Installs"
},
{
"url": "https://vsmarketplacebadge.apphb.com/downloads-short/Anan.devdocstab.svg",
"href": "https://marketplace.visualstudio.com/items/Anan.devdocstab",
"description": "Downloads"
},
{
"url": "https://vsmarketplacebadge.apphb.com/rating-star/Anan.devdocstab.svg",
"href": "https://marketplace.visualstudio.com/items/Anan.devdocstab",
"description": "Rating"
}
],
"activationEvents": [
"onCommand:DevDocsTab.home",
"onCommand:DevDocsTab.search",
"onCommand:DevDocsTab.preferences",
"onCommand:DevDocsTab.offline"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "DevDocsTab.home",
"title": "DevDocsTab: Home DevDocs.io"
},
{
"command": "DevDocsTab.search",
"title": "DevDocsTab: Search in DevDocs.io"
},
{
"command": "DevDocsTab.preferences",
"title": "DevDocsTab: Preferences DevDocs.io"
},
{
"command": "DevDocsTab.offline",
"title": "DevDocsTab: Offline Data DevDocs.io"
}
],
"menus": {
"editor/context": [
{
"command": "DevDocsTab.search",
"group": "y_commands@0"
}
]
},
"keybindings": [
{
"command": "DevDocsTab.search",
"key": "ctrl+k ctrl+k",
"mac": "cmd+k cmd+k",
"when": "editorTextFocus"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.56.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
}
}