-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "autocomplete-font-awesome",
"main": "./lib/main",
"version": "1.0.2",
"description": "Font Awesome autocomplete and icon previews for Atom.",
"keywords": [
"autocomplete",
"provider",
"font",
"awesome",
"fontawesome",
"icons",
"preview"
],
"repository": "https://github.com/lonekorean/atom-autocomplete-font-awesome",
"author": "Will Boyd <[email protected]> (http://codersblock.com)",
"license": "MIT",
"engines": {
"atom": ">=1.15.0 <2.0.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
}
},
"configSchema": {
"version": {
"title": "Font Awesome Version",
"description": "Which version of Font Awesome to use for suggestions.",
"type": "string",
"default": "5.0.8",
"enum": [
{
"value": "4.7.0",
"description": "Version 4.7.0"
},
{
"value": "5.0.8",
"description": "Version 5.0.8"
}
]
}
}
}