forked from LaurentTreguier/vscode-uncrustify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "uncrustify",
"displayName": "Uncrustify",
"description": "Code format using uncrustify",
"version": "2.5.0",
"publisher": "LaurentTreguier",
"license": "MIT",
"homepage": "https://github.com/LaurentTreguier/vscode-uncrustify",
"icon": "images/uncrustify.png",
"galleryBanner": {
"color": "#1F1F1F",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/LaurentTreguier/vscode-uncrustify.git"
},
"bugs": {
"url": "https://github.com/LaurentTreguier/vscode-uncrustify/issues"
},
"engines": {
"vscode": "^1.6.0"
},
"categories": [
"Languages",
"Formatters"
],
"keywords": [
"uncrustify",
"format",
"formatting",
"formatter"
],
"activationEvents": [
"onLanguage:apex",
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:csharp",
"onLanguage:d",
"onLanguage:java",
"onLanguage:objective-c",
"onLanguage:pawn",
"onLanguage:vala",
"workspaceContains:uncrustify.cfg",
"onCommand:uncrustify.create",
"onCommand:uncrustify.open",
"onCommand:uncrustify.save",
"onCommand:uncrustify.savePreset",
"onCommand:uncrustify.loadPreset",
"onCommand:uncrustify.deletePreset",
"onCommand:uncrustify.upgrade"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"title": "Uncrustify configuration",
"properties": {
"uncrustify.executablePath": {
"type": "string",
"default": "uncrustify",
"description": "Path to the uncrustify executable"
},
"uncrustify.configPath": {
"type": "string",
"default": null,
"description": "Path to the uncrustify configuration file"
},
"uncrustify.graphicalConfig": {
"type": "boolean",
"default": true,
"description": "Toggles the graphical config editor"
},
"uncrustify.debug": {
"type": "boolean",
"default": false,
"description": "Activates logs for debugging the extension"
}
}
},
"commands": [
{
"title": "Create default config file",
"category": "Uncrustify",
"command": "uncrustify.create"
},
{
"title": "Open config file",
"category": "Uncustify",
"command": "uncrustify.open"
},
{
"title": "Save config file",
"category": "Uncustify",
"command": "uncrustify.save"
},
{
"title": "Save config file as preset",
"category": "Uncustify",
"command": "uncrustify.savePreset"
},
{
"title": "Load preset config file",
"category": "Uncrustify",
"command": "uncrustify.loadPreset"
},
{
"title": "Delete preset config file",
"category": "Uncrustify",
"command": "uncrustify.deletePreset"
},
{
"title": "Upgrade config file",
"category": "Uncrustify",
"command": "uncrustify.upgrade"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"meta-pkg": "^0.6.4",
"request": "^2.81.0"
},
"devDependencies": {
"@types/node": "^8.0.15",
"@types/request": "^2.0.0",
"typescript": "^2.4.2",
"vscode": "^1.1.4"
}
}