-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.31 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.31 KB
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
{
"name": "gilbert",
"displayName": "Gilbert",
"description": "Gilbert support for Visual Studio Code",
"version": "0.1.0",
"publisher": "x1unix",
"homepage": "https://github.com/go-gilbert/gilbert-vscode/blob/master/README.md",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/go-gilbert/gilbert-vscode.git"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/gilbert.yaml"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "gilbertTasks.runTask",
"title": "Run task"
},
{
"command": "gilbertTasks.refresh",
"title": "Refresh tasks list",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
},
{
"command": "gilbertTasks.editManifest",
"title": "Edit",
"icon": {
"light": "resources/light/edit.svg",
"dark": "resources/dark/edit.svg"
}
}
],
"menus": {
"view/title": [
{
"command": "gilbertTasks.refresh",
"when": "view == gilbertTasks",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "gilbertTasks.editManifest",
"when": "view == gilbertTasks && viewItem == group",
"group": "inline"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "gilbertTasks",
"title": "Gilbert tasks",
"icon": "media/cogs.svg"
}
]
},
"views": {
"explorer": [
{
"id": "gilbertTasks",
"name": "Gilbert Tasks",
"when": "hasGilbertManifest"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"dependencies": {
"glob": "^7.1.4"
}
}