-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "latex-folding",
"main": "./lib/main",
"version": "1.5.0",
"description": "Code folding support for LaTeX",
"keywords": [
"latex",
"folding"
],
"bugs": {
"url": "https://github.com/Aerijo/latex-folding/issues"
},
"author": "Benjamin Gray",
"repository": "https://github.com/Aerijo/latex-folding",
"license": "MIT",
"engines": {
"atom": ">=1.34.0 <2.0.0"
},
"activationHooks": [
"text.tex.latex:root-scope-used"
],
"dependencies": {
"atom-package-deps": "5.0.0"
},
"package-deps": [
"atom-folding"
],
"configSchema": {
"foldTrailingSectionWhitespace": {
"description": "Enable to fold everything up until the next section, including trailing whitespace.",
"type": "boolean",
"default": false
},
"foldTrailingPreambleWhitespace": {
"description": "Enable to fold everything from \\documentclass{...} to \\begin{document}, including trailing whitespace.",
"type": "boolean",
"default": false
},
"lenientEnvironmentEnds": {
"description": "Does not look at what the environment end name is, only balances their number",
"type": "boolean",
"default": true
}
},
"providedServices": {
"folding.provider": {
"versions": {
"0.0.0": "provideFolding"
}
}
}
}