forked from natewallace/peep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.04 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
{
"name": "peep",
"displayName": "Peep",
"description": "Quickly toggle between hiding and showing files defined in your projects files.exclude setting.",
"version": "0.0.5",
"publisher": "nwallace",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/natewallace/peep.git"
},
"engines": {
"vscode": "^0.10.1"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#99C3D7"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.peepAll",
"onCommand:extension.peepNone",
"onCommand:extension.peepToggle"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.peepAll",
"title": "Peep All"
},
{
"command": "extension.peepNone",
"title": "Peep None"
},
{
"command": "extension.peepToggle",
"title": "Peep Toggle"
}
]
},
"devDependencies": {
"vscode": "0.10.x"
},
"dependencies": {
"comment-json": "^1.1.3"
}
}