-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
{
"name": "language-1c-bsl",
"main": "./lib/language-1c-bsl",
"author": "Nikita Gryzlov <[email protected]>",
"version": "1.4.7",
"description": "Provides syntax highlighting for 1C:Enterprise 8 (1S:Enterprise 8)",
"keywords": [
"grammar",
"syntax",
"1C"
],
"repository": "https://github.com/xDrivenDevelopment/atom-language-1c-bsl",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-linter": "^4.0.1",
"atom-package-deps": "^4.0.1"
},
"devDependencies": {
"atom-grammar-test": "^0.6.1",
"coffeelint": "^1.15.0"
},
"package-deps": [
"linter"
],
"providedServices": {
"builder": {
"description": "Builds 1C (BSL) files with OneScript",
"versions": {
"2.0.0": "provideBuilder"
}
},
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"configSchema": {
"enableOneScriptLinter": {
"title": "Enable linting of files",
"description": "Lint files through `OneScript -check` command",
"type": "boolean",
"default": true,
"order": 10
},
"lintBSLFiles": {
"title": "Lint *.bsl files as *.os",
"description": "Enable this if you want to check `*.bsl` files via OneScriptLint",
"type": "boolean",
"default": false,
"order": 20
},
"forceEnableExtendedUnicodeSupport": {
"title": "Force enable 'Enable extended unicode support'",
"description": "Disable this only if you get errors in autocomplete-plus package with **other** languages",
"type": "boolean",
"default": true,
"order": 30
}
}
}