-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
137 lines (137 loc) · 2.75 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
134
135
136
137
{
"name": "blue-phoenix",
"displayName": "Blue Phoenix",
"description": "SAP Development Tools in VS Code",
"version": "1.3.4",
"publisher": "jhodel",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Programming Languages",
"Themes",
"Formatters"
],
"keywords": [
"xsjs",
"xsjslib",
"xsodata",
"sap",
"capm",
"cap model",
"hana",
"xsa",
"sqlscript"
],
"bugs": {
"url": "https://github.com/jcailan/vscode-blue-phoenix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jcailan/vscode-blue-phoenix"
},
"icon": "images/icon.png",
"activationEvents": [
"onLanguage:yaml",
"onLanguage:sqlscript"
],
"main": "./client/out/extension",
"contributes": {
"iconThemes": [
{
"id": "blue-phoenix",
"label": "Blue Phoenix Icon Theme",
"path": "./themes/blue-phoenix-icon-theme.json"
}
],
"languages": [
{
"id": "hana_json",
"aliases": [
"JSON",
"json"
],
"extensions": [
".hdiconfig",
".hdinamespace",
".hdbgrants",
".hdbrole",
".hdbsynonym",
".hdbsynonymtemplate",
".hdbtabledata",
".csn"
],
"configuration": "./language-configuration/json-language-configuration.json"
},
{
"id": "sqlscript",
"aliases": [
"SQLScript",
"sqlscript"
],
"extensions": [
".hdblibrary",
".hdbfunction",
".hdbprocedure",
".hdbtabletype",
".hdbtable",
".hdbview",
".hdbconstraint",
".hdbsequence",
".hdbvirtualfunction",
".hdbvirtualprocedure",
".hdbdropcreatetable"
],
"configuration": "./language-configuration/sqlscript-language-configuration.json"
},
{
"id": "xsjs",
"aliases": [
"XSJS",
"xsjs"
],
"extensions": [
".xsjs",
".xsjslib",
".xsodata"
],
"configuration": "./language-configuration/xsjs-language-configuration.json"
}
],
"grammars": [
{
"language": "hana_json",
"scopeName": "source.json",
"path": "./syntaxes/JSON.tmLanguage.json"
},
{
"language": "sqlscript",
"scopeName": "source.sqlscript",
"path": "./syntaxes/sqlscript.tmLanguage.json"
},
{
"language": "xsjs",
"scopeName": "source.xsjs",
"path": "./syntaxes/xsjs.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.javascript": "javascript"
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"mocha": "^6.2.2",
"typescript": "^3.8.3"
}
}