-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.23 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
{
"name": "vscode-search",
"displayName": "CodeSearch",
"description": " Extension to search for selected text in the internet.",
"version": "0.0.2",
"publisher": "dorischen",
"author": {
"name": "Doris Chen"
},
"homepage": "https://github.com/doristchen/vscode-search",
"engines": {
"vscode": "^0.10.1"
},
"icon": "images/icon.png",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:codebing.search"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "codebing.search",
"title": "Stack"
},
{
"command": "codebing.search",
"title": "Channel9"
}
],
"configuration": {
"title": "CodeBing Configuration",
"type": "object",
"properties": {
"codebing.searchProviders": {
"title": "Search providers",
"type": "object",
"description": "A dictionary with search engines, mapping a key to a search url. In the search url {query} is replaced with the user search. Use the key as first word in the search input to specify the search engine.",
"default": {
"b": "https://www.bing.com/search?q={query}",
"g": "https://www.google.com/search?q={query}",
"yh": "https://search.yahoo.com/search?p={query}",
"ddg": "https://duckduckgo.com/?q={query}",
"wiki": "https://en.wikipedia.org/wiki/{query}",
"yt": "https://www.youtube.com/results?search_query={query}",
"twit": "https://twitter.com/search?q={query}",
"gh": "https://github.com/search?utf8=✓&q={query}",
"st": "http://stackoverflow.com/search?q={query}",
"ch": "https://channel9.msdn.com/Search?term={query}#ch9Search"
}
},
"codebing.useDefaultProviderOnly": {
"title": "Use default search provider only.",
"type": "boolean",
"description": "If true, only the default search provider will be used.",
"default": false
},
"codebing.defaultProvider": {
"title": "Default search provider",
"type": "string",
"description": "A string containing a search engine (or key from searchProviders). In the search url {query} is replaced with the user search.",
"default": "st"
},
"codebing.noInputBoxIfTextSelected": {
"title": "No input box if text is selected",
"type": "boolean",
"description": "If this is 'true' no input box will appear if selected text is searched.",
"default": false
}
}
},
"keybindings": [
{
"command": "codebing.search",
"key": "ctrl+alt+F"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"pretest": "tsc",
"test": "mocha --ui tdd ./out/test/extension.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SrTobi/code-bing/"
},
"bugs": {
"url": "https://github.com/SrTobi/code-bing/issues"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"dependencies": {
"open": "0.0.5"
}
}