-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.9 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
{
"name": "vscode-oracle-format",
"displayName": "oracle-format",
"description": "PL/SQL formatter (using SQLcl)",
"version": "0.1.5",
"publisher": "mp",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Formatters"
],
"activationEvents": [
"*"
],
"keywords": [
"plsql",
"PL/SQL",
"oracle",
"sqlcl"
],
"homepage": "https://github.com/mickeypearce/vscode-oracle-format",
"repository": {
"type": "git",
"url": "https://github.com/mickeypearce/vscode-oracle-format.git"
},
"bugs": {
"url": "https://github.com/mickeypearce/vscode-oracle-format/issues"
},
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Oracle-format Settings",
"properties": {
"oracle-format.sqlcl": {
"type": "string",
"default": "sql",
"required": false,
"description": "Path to SQLcl executable"
},
"oracle-format.rules": {
"type": "string",
"default": null,
"required": false,
"description": "SQLDeveloper formatter rules (.xml)"
},
"oracle-format.languages": {
"type": "array",
"default": [
"plsql",
"oraclesql"
],
"required": false,
"description": "Languages associated with formatter"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node out/test/runTest",
"build": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^2.2.42",
"@types/node": "^10.0.0",
"@types/vscode": "^1.44.0",
"glob": "^7.1.4",
"mocha": "^7.1.1",
"tslint": "^5.16.0",
"typescript": "^2.6.1",
"vscode-test": "^1.3.0"
}
}