-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.28 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.28 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
{
"name": "vscode-commandbar",
"displayName": "vscode-commandbar",
"description": "Visual Studio Code Command bar",
"version": "0.3.1",
"publisher": "gsppvo",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/ppatotski/vscode-commandbar",
"icon": "logo.png",
"engines": {
"vscode": "^1.10.0"
},
"contributors": [
{
"email": "gsppvo@gmail.com",
"name": "Petr Patotski"
}
],
"bugs": {
"url": "https://github.com/ppatotski/vscode-commandbar/issues",
"email": "gsppvo@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ppatotski/vscode-commandbar.git"
},
"categories": [
"Other"
],
"keywords": [
"command",
"statusbar",
"toolbar",
"button",
"action"
],
"activationEvents": [
"*"
],
"galleryBanner": {
"color": "#d1dcf0",
"theme": "light"
},
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.commandbar.settings",
"title": "Settings",
"category": "Commandbar",
"icon": {
"dark": "./logo.png",
"light": "./logo.png"
}
}
],
"jsonValidation": [
{
"fileMatch": "/.vscode/commandbar.json",
"url": "./vscode-commandbar-schema.json"
}
]
},
"badges": [
{
"url": "https://vsmarketplacebadge.apphb.com/version/gsppvo.vscode-commandbar.svg",
"href": "https://marketplace.visualstudio.com/items?itemName=gsppvo.vscode-commandbar",
"description": "VSCode Extension Release"
},
{
"url": "https://img.shields.io/github/release/ppatotski/vscode-commandbar.svg",
"href": "https://github.com/ppatotski/vscode-commandbar/releases",
"description": "Github Release"
},
{
"url": "https://david-dm.org/ppatotski/vscode-commandbar.svg",
"href": "https://david-dm.org/ppatotski/vscode-commandbar",
"description": "Dependency Status"
}
],
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/node": "^6.0.90",
"standard": "^12.0.1",
"vscode": "^1.1.28"
},
"dependencies": {
"strip-json-comments": "^2.0.1",
"tree-kill": "^1.2.1"
}
}