-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 2.89 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
{
"name": "vscode-ov",
"displayName": "openVALIDATION",
"description": "VSCode extension for the openVALIDATION language",
"version": "0.1.3",
"license": "MIT",
"engines": {
"vscode": "^1.33.0"
},
"icon": "images/logo.png",
"publisher": "openVALIDATION",
"repository": {
"type": "git",
"url": "https://github.com/openvalidation/openvalidation-vscode.git"
},
"categories": [
"Programming Languages",
"Linters"
],
"activationEvents": [
"onLanguage:openVALIDATION",
"onLanguage:ov"
],
"main": "./out/extension/extension.js",
"contributes": {
"languages": [
{
"id": "openVALIDATION",
"aliases": [
"openVALIDATION",
"ov"
],
"extensions": [
".ov",
".ovl",
"openVALIDATION"
]
}
],
"configuration": {
"title": "openVALIDATION",
"properties": {
"openVALIDATION.culture": {
"type": "string",
"default": "en",
"enum": [
"en",
"de",
"ru"
],
"description": "specifies the natural language of the openVALIDATION code",
"enumDescriptions": [
"enables the english-language for openVALIDATION-Code",
"enables the german-language for openVALIDATION-Code",
"enables the russian-language for openVALIDATION-Code"
],
"scope": "window"
},
"openVALIDATION.language": {
"type": "string",
"default": "Java",
"enum": [
"Java",
"CSharp",
"JavaScript",
"Node",
"Python"
],
"description": "defines the programming language which should be generated",
"enumDescriptions": [
"generates Java code",
"generates CSharp code",
"generates JavaScript code",
"generates Node code",
"generates Python code"
],
"scope": "window"
},
"openVALIDATION.codeGeneration.path": {
"type": "string",
"default": null,
"description": "defines the folder where the code should be generated to",
"scope": "window"
}
}
}
},
"scripts": {
"postinstall": "vscode-install",
"clean": "rimraf out",
"compile": "tsc -p ./",
"build": "npm run clean && npm run compile",
"pretest": "npm run build",
"test": "sh ./scripts/e2e.sh",
"vscode:prepublish": "npm run build"
},
"dependencies": {
"ov-language-server": "^0.1.5",
"ov-language-server-types": "^0.1.0",
"vscode-languageclient": "^5.2.1"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.1",
"@types/node": "^12.11.7",
"glob": "^7.1.5",
"jest": "^25.1.0",
"tslint": "^5.16.0",
"typescript": "^3.6.4",
"vscode": "^1.1.35"
}
}