-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.6 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
{
"name": "vscode-opengrok",
"displayName": "vscode-opengrok",
"description": "VS Code OpenGrok Integration",
"version": "0.3.0",
"publisher": "aneeshd16",
"repository": {
"type": "git",
"url": "https://github.com/aneeshd16/vscode-opengrok"
},
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vscode-opengrok.openFileOnRemote",
"onCommand:vscode-opengrok.search"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "vscode-opengrok.openFileOnRemote",
"title": "OpenGrok: Open File on Remote",
"when": "editorTextFocus"
},
{
"command": "vscode-opengrok.search",
"title": "OpenGrok: Search for text",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "OpenGrok",
"properties": {
"openGrok.serverSettings.rootUrl": {
"type": "string",
"format": "uri",
"default": "",
"scope": "window",
"description": "Root URL at which the OpenGrok installation can be accessed"
},
"openGrok.serverSettings.project": {
"type": "string",
"default": "trunk",
"scope": "window",
"description": "Name of the project"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "node ./test/runTest.js",
"deploy": "vsce publish --yarn"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.49.0",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vsce": "^1.79.5",
"vscode-test": "^1.4.0"
}
}