-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 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
{
"name": "language-tosca",
"main": "./lib/language-tosca",
"version": "0.5.0",
"description": "Tosca language support in Atom",
"keywords": [],
"repository": "https://github.com/tosca-lang/atom.git",
"license": "EPL",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"dependencies": {
"atom-linter": "^5.0.1"
},
"configSchema": {
"metaCompilerPath": {
"title": "Tosca Meta-Compiler Path",
"description": "Path to the directory containing the Tosca JAR distribution.",
"type": "string",
"default": ".",
"order": 1
},
"javaPath": {
"title": "Java Path",
"description": "Path to the java executable.",
"type": "string",
"default": "/usr/bin/java",
"order": 2
},
"grammarClasspath": {
"title": "Parsers Java Class Path ",
"description": "A colon separated list of directories, JAR archives, and ZIP archives to search for parser class files",
"type": "string",
"default": "",
"order": 3
},
"grammarClassname": {
"title": "Parsers Java Class Name",
"description": "A comma separated list of parser class names",
"type": "string",
"default": "",
"order": 4
}
}
}