-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 928 Bytes
/
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
{
"name": "autocomplete-ruby",
"main": "./lib/autocomplete-ruby",
"version": "0.2.8",
"author": {
"name": "Ian Hattendorf",
"email": "ianhattendorf@gmail.com",
"url": "http://ianhattendorf.com/"
},
"description": "Intelligent Ruby code completion",
"keywords": [
"autocomplete",
"autocomplete-plus",
"rsense",
"ruby"
],
"repository": "https://github.com/ianhattendorf/autocomplete-ruby",
"homepage": "https://github.com/ianhattendorf/autocomplete-ruby",
"bugs": {
"url": "https://github.com/ianhattendorf/autocomplete-ruby/issues"
},
"license": "MIT",
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"jquery": "^3",
"table-parser": "^0.1.3"
},
"providedServices": {
"autocomplete.provider": {
"description": "Intelligent Ruby code completion",
"versions": {
"2.0.0": "provideAutocompletion"
}
}
}
}