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
114 lines (112 loc) · 3.56 KB
/
package.json
File metadata and controls
114 lines (112 loc) · 3.56 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
{
"name": "plsql-language",
"displayName": "Language PL/SQL",
"description": "PL/SQL language (Oracle) support",
"version": "1.0.3",
"publisher": "xyz",
"engines": {
"vscode": "^1.11.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",
".pkb",
".pkh",
".pks"
],
"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}"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"glob": "7.1.1",
"json5": "0.5.1",
"dateformat": "2.0.0"
},
"devDependencies": {
"typescript": "2.2.2",
"vscode": "1.1.0",
"mocha": "3.2.0",
"@types/node": "7.0.12",
"@types/mocha": "2.2.40"
}
}