-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "StackSearchExt",
"displayName": "Stack Overflow Search",
"description": "Extension made to do a stack overflow search straight from VSCode",
"version": "1.0.2",
"publisher": "gcrev93",
"repository": {
"type": "git",
"url": "https://github.com/gcrev93/code-stackoverflow.git"
},
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.searchStack",
"onCommand:extension.searchSelection"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.searchStack",
"title": "Stack Search"
},
{
"command": "extension.searchSelection",
"title": "Selection Stack Search"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"pretest": "tsc",
"test": "jest"
},
"devDependencies": {
"typescript": "^3.6.0",
"vscode": "^1.1.36"
},
"dependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"jest": "^24.9.0",
"npm": "^6.11.2",
"open": "^6.4.0",
"ts-jest": "^24.0.2"
}
}