This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.32 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
{
"name": "bar",
"displayName": "Build and run",
"description": "Click a button to compile/build and/or run a project",
"version": "0.2.0",
"publisher": "olback",
"icon": "images/bar_icon.png",
"galleryBanner": {
"color": "#333",
"theme": "dark"
},
"license": "MIT",
"homepage": "https://github.com/olback/bar-vscode/blob/master/README.md",
"bugs": "https://github.com/olback/bar-vscode/issues",
"repository": {
"type": "git",
"url": "https://github.com/olback/bar-vscode.git"
},
"author": {
"name": "olback",
"email": "bar-vscode@olback.net"
},
"categories": [
"Other"
],
"keywords": [
"IDE",
"vscode",
"buttons",
"build",
"run"
],
"engines": {
"vscode": "^1.18.0"
},
"activationEvents": [
"workspaceContains:**/.vscode/bar.conf.json",
"onCommand:bar.init"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "bar.init",
"title": "Bar: Init"
},
{
"command": "bar.run",
"title": "Bar: Run project"
},
{
"command": "bar.build",
"title": "Bar: Build project"
},
{
"command": "bar.bar",
"title": "Bar: Build and run project"
},
{
"command": "bar.reset",
"title": "Bar: Reset config"
},
{
"command": "bar.reload",
"title": "Bar: Reload config"
},
{
"command": "bar.config",
"title": "Bar: Edit config"
}],
"keybindings":[
{
"command": "bar.bar",
"key": "shift+f6"
},
{
"command": "bar.build",
"key": "ctrl+shift+f6"
},
{
"command": "bar.run",
"key": "ctrl+shift+f2"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}