forked from zabel-xyz/plsql-language
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (136 loc) · 4.55 KB
/
package.json
File metadata and controls
138 lines (136 loc) · 4.55 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
{
"name": "plsql-language",
"displayName": "Language PL/SQL",
"description": "PL/SQL language (Oracle) support",
"version": "1.2.0",
"publisher": "xyz",
"engines": {
"vscode": "^1.18.0"
},
"homepage": "https://github.com/zabel-xyz/plsql-language",
"repository": {
"type": "git",
"url": "https://github.com/zabel-xyz/plsql-language.git"
},
"bugs": {
"url": "https://github.com/zabel-xyz/plsql-language/issues"
},
"icon": "images/plsql-language.png",
"categories": [
"Languages"
],
"keywords": [
"plsql",
"oracle"
],
"activationEvents": [
"onLanguage:plsql"
],
"main": "./out/src/extension",
"contributes": {
"languages": [{
"id": "plsql",
"aliases": [
"PLSQL",
"PL/SQL",
"plsql"
],
"extensions": [
".sql",
".ddl",
".dml",
".pkh",
".pkb",
".pks",
".pck",
".pls"
],
"configuration": "./syntaxes/plsql.configuration.json"
}],
"grammars": [{
"language": "plsql",
"scopeName": "source.plsql.oracle",
"path": "./syntaxes/plsql.tmLanguage"
}],
"configuration": {
"type": "object",
"title": "PL/SQL configuration",
"properties": {
"plsql-language.searchFolder": {
"type": "string",
"default": null,
"description": "A folder to search plsql files (default is to search in workspace folder)"
},
"plsql-language.replaceSearch": {
"type": "string",
"default": null,
"description": "Regular expression used to transform methodname => filename"
},
"plsql-language.replaceValue": {
"type": "string",
"default": null,
"description": "String value used to transform methodname => filename"
},
"plsql-language.snippets.enable": {
"type": "boolean",
"default": true,
"description": "Enable snippets"
},
"plsql-language.pldoc.enable": {
"type": "boolean",
"default": true,
"description": "Enable a special snippet for automatic documentation of procedures and functions"
},
"plsql-language.pldoc.path": {
"type": "string",
"default": null,
"description": "Specify the folder location where to find pldoc.json (null: use the default file)"
},
"plsql-language.pldoc.author": {
"type": "string",
"default": "",
"description": "Define string to replace variable ${PLDOC_AUTHOR}"
},
"plsql-language.workspaceSymbols.enable": {
"type": "boolean",
"default": true,
"description": "Enable or disable workspace symbols"
},
"plsql-language.workspaceSymbols.ctags": {
"type": "string",
"default": "",
"description": "Path to ctags.exe used for workspace symbol generation"
},
"plsql-language.workspaceSymbols.extensions": {
"type": "string",
"default": ".sql.pks.pkb",
"description": "File extenstions for which symbols will be generated"
}
}
},
"commands": [{
"command": "extension.rebuildWorkspaceSymbols",
"title": "Rebuild",
"category": "Workspace Symbols"
}]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"glob": "7.1.2",
"json5": "0.5.1",
"dateformat": "3.0.2",
"child_process": "^1.0.2",
"fuzzy": "^0.1.3"
},
"devDependencies": {
"typescript": "2.5.3",
"vscode": "1.1.6",
"mocha": "4.0.1",
"@types/node": "7.0.12",
"@types/mocha": "2.2.44"
}
}