-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 898 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 898 Bytes
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
{
"name": "wordnet",
"main": "./lib/atom-wordnet",
"version": "0.2.0",
"description": "Adds a wordnet interface to atom to easily access definitions and synonyms.",
"keywords": [
"wordnet",
"thesaurus",
"synonyms",
"english",
"definitions",
"dictionary"
],
"repository": "https://github.com/mbroedl/atom-wordnet",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-select-list": "^0.7.1",
"wink-pos-tagger": "^1.5.0",
"wordpos": "^1.1.6"
},
"configSchema": {
"grammars": {
"type": "array",
"default": [
"source.gfm",
"text.html.basic",
"text.md",
"text.plain",
"text.plain.null-grammar"
],
"description": "List of scopes for languages for which the wornet package and its keybindings are enabled. `*` for any language."
}
}
}