This repository was archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.55 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.55 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "linter-spell-ruby",
"main": "./lib/main",
"version": "0.4.0",
"description": "Ruby spell checking using linter-spell.",
"author": "Tarn Burton <twburton@gmail.com>",
"keywords": [
"ruby",
"linter",
"spell-check"
],
"repository": "https://github.com/AtomLinter/linter-spell-ruby",
"license": "MIT",
"engines": {
"atom": ">=1.0.0"
},
"bugs": {
"url": "https://github.com/AtomLinter/linter-spell-ruby/issues"
},
"dependencies": {
"lodash": "^4.13.0",
"atom-package-deps": "^5.0.0",
"linter-spell-word-list": "^0.5.0"
},
"devDependecies": {
"semver": "^5.3.0"
},
"package-deps": [],
"activationHooks": [
"language-ruby: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 Ruby comments.",
"type": "boolean",
"default": true,
"order": 1
},
"words": {
"description": "Ruby specific word list. Precede word with '!' to make word case sensitive.",
"type": "array",
"default": [],
"order": 2
}
}
}