forked from bradymholt/vscode-pgFormatter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 3.58 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 3.58 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
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
134
135
136
137
138
139
140
141
142
143
144
{
"name": "pgformatter",
"displayName": "pgFormatter",
"description": "A PostgreSQL SQL formatter",
"author": {
"name": "Brady Holt"
},
"version": "1.6.2",
"publisher": "bradymholt",
"icon": "icon.png",
"galleryBanner": {
"theme": "dark",
"color": "#555555"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Other"
],
"keywords": [
"pgsql",
"postgres",
"PostgreSQL",
"SQL",
"Formatting"
],
"license": "MIT",
"homepage": "https://github.com/bradymholt/vscode-pgFormatter",
"repository": {
"type": "git",
"url": "https://github.com/bradymholt/vscode-pgFormatter.git"
},
"bugs": {
"url": "https://github.com/bradymholt/vscode-pgFormatter/issues"
},
"activationEvents": [
"onLanguage:sql",
"onLanguage:pgsql"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "sql",
"aliases": [
"SQL",
"sql",
"pgsql"
],
"extensions": [
"sql",
"pgsql"
]
}
],
"configuration": {
"type": "object",
"title": "pgFormatter Configuration",
"properties": {
"pgFormatter.spaces": {
"type": "number",
"description": "Number of spaces to indent the code"
},
"pgFormatter.commaStart": {
"type": "boolean",
"default": false,
"description": "Use preceding comma in parameter list"
},
"pgFormatter.commaBreak": {
"type": "boolean",
"default": false,
"description": "In insert statement, add a newline after each comma"
},
"pgFormatter.commaEnd": {
"type": "boolean",
"default": true,
"description": "Use trailing comma in parameter list"
},
"pgFormatter.noComment": {
"type": "boolean",
"default": false,
"description": "Remove any comments"
},
"pgFormatter.functionCase": {
"type": "string",
"default": "unchanged",
"enum": [
"unchanged",
"lowercase",
"uppercase",
"capitalize"
],
"description": "Case of the function names"
},
"pgFormatter.keywordCase": {
"type": "string",
"default": "uppercase",
"enum": [
"unchanged",
"lowercase",
"uppercase",
"capitalize"
],
"description": "Case of the reserved keywords"
},
"pgFormatter.formatType": {
"type": "boolean",
"default": false,
"description": "Use another formatting type for some statements"
},
"pgFormatter.placeholder": {
"type": "string",
"default": null,
"description": "Regex to find code that must not be changed"
},
"pgFormatter.perlBinPath": {
"type": "string",
"default": "perl",
"description": "The path to the perl executable"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"vscode:prepublish": "npm run compile",
"vscode:publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.19",
"typescript": "^3.2.4",
"vscode": "^1.1.28"
},
"dependencies": {
"psqlformat": "^0.16.0"
}
}