forked from AtomLinter/linter-spell-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.77 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
{
"name": "linter-spell-latex",
"main": "./lib/main",
"version": "0.11.0",
"description": "LaTeX, TeX and BibTeX spell checking using linter-spell.",
"author": "Tarn Burton <twburton@gmail.com>",
"keywords": [
"tex",
"latex",
"linter",
"spell-check",
"linter-spell"
],
"repository": "https://github.com/AtomLinter/linter-spell-latex",
"license": "MIT",
"engines": {
"atom": ">=1.0.0"
},
"bugs": {
"url": "https://github.com/AtomLinter/linter-spell-latex/issues"
},
"dependencies": {
"lodash": "^4.13.0",
"atom-package-deps": "^4.0.0",
"linter-spell-word-list": "^0.5.0"
},
"devDependecies": {
"semver": "^5.3.0"
},
"package-deps": [
"linter-spell"
],
"activationHooks": [
"language-latex:grammar-used",
"language-tex:grammar-used",
"language-latex2e:grammar-used"
],
"standard": {
"parser": "babel-eslint",
"globals": [
"atom",
"latex",
"afterEach",
"beforeEach",
"describe",
"expect",
"it",
"jasmine",
"runs",
"spyOn",
"waitsFor",
"waitsForPromise"
]
},
"providedServices": {
"linter-spell-grammar": {
"versions": {
"1.0.0": "provideGrammar"
}
},
"linter-spell-dictionary": {
"versions": {
"1.0.0": "provideDictionary"
}
}
},
"configSchema": {
"checkComments": {
"description": "Spell check in LaTeX, TeX and BibTeX comments.",
"type": "boolean",
"default": true,
"order": 1
},
"words": {
"title": "TeX, LaTeX and BibTeX Words",
"description": "TeX, LaTeX and BibTeX specific word list. Precede word with '!' to make word case sensitive.",
"type": "array",
"default": [],
"order": 2
}
}
}