-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "racer",
"description": "Intelligent Rust code completion.",
"keywords": [
"rust",
"racer",
"autocomplete",
"autocomplete-plus"
],
"version": "0.20.0",
"author": "Eric West <esw9999@gmail.com> (https://github.com/edubkendo)",
"contributors": [
"mathieu _alkama_ m. <code@alkama.com> (https://github.com/alkama)",
"Nathan _phaux_ <phaux@horsefucker.org> (https://github.com/phaux)",
"Michael _mcanders_ Anderson <mcanders1@gmail.com> (https://github.com/mcanders)",
"Konstantin _UvaK_ Uvarov <konstantin.uvarov@gmail.com> (https://github.com/UvaK)"
],
"homepage": "https://atom.io/packages/racer",
"repository": {
"type": "git",
"url": "https://github.com/edubkendo/atom-racer.git"
},
"bugs": {
"url": "https://github.com/edubkendo/atom-racer/issues"
},
"license": "MIT",
"main": "./lib/racer",
"engines": {
"atom": ">0.50.0"
},
"dependencies": {
"underscore-plus": "~1.6.6",
"temp": "~0.8.1"
},
"providedServices": {
"autocomplete.provider": {
"description": "Intelligent Rust code completion",
"versions": {
"2.0.0": "provideAutocompletion"
}
}
}
}