-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.2 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
{
"name": "vscode-fold",
"displayName": "Fold",
"description": "Auto-folding of indented lines for Visual Studio Code",
"version": "1.4.3",
"repository": {
"type": "git",
"url": "https://github.com/felicio/vscode-fold.git"
},
"publisher": "felicio",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other"
],
"keywords": [
"auto",
"fold",
"region",
"indent",
"vim"
],
"galleryBanner": {
"color": "#007acc",
"theme": "dark"
},
"qna": false,
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "fold.foldLevelDefault",
"title": "Fold Level Default"
}
],
"configuration": {
"title": "Fold",
"properties": {
"fold.level": {
"type": "number",
"default": 2,
"description": "Default fold level",
"scope": "resource"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"eslint": "^4.11.0",
"vscode": "^1.1.33"
},
"__metadata": {
"id": "ede3921c-8fa4-43c7-b305-2c38a5766694",
"publisherDisplayName": "Felicio Mununga",
"publisherId": "25f0dc03-4b8c-49ac-bf77-1853c3ec9efa"
}
}