This repository was archived by the owner on Oct 6, 2018. It is now read-only.
forked from atom/spell-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "spell-check",
"version": "0.67.1",
"main": "./lib/main",
"description": "Highlights misspelled words and shows possible corrections.",
"dependencies": {
"atom-space-pen-views": "^2.0.0",
"spellchecker": "https://github.com/nightuser/node-spellchecker",
"underscore-plus": "^1"
},
"repository": "https://github.com/atom/spell-check",
"license": "MIT",
"engines": {
"atom": "*"
},
"configSchema": {
"grammars": {
"type": "array",
"default": [
"source.asciidoc",
"source.gfm",
"text.git-commit",
"text.plain",
"text.plain.null-grammar"
],
"description": "List of scopes for languages which will be checked for misspellings. See [the README](https://github.com/atom/spell-check#spell-check-package-) for more information on finding the correct scope for a specific language."
},
"dicts": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Comma-separated dictionary names."
},
"dictsDir": {
"type": "string",
"default": "",
"description": "Path to dictionaries."
}
},
"devDependencies": {
"coffeelint": "^1.9.7"
}
}