-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 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
47
48
49
50
51
{
"name": "autocomplete-java-minus",
"main": "./lib/index.js",
"version": "0.14.0",
"description": "Autocomplete suggestions for Java",
"scripts": {
"lint": "eslint lib spec"
},
"keywords": [
"java",
"autocomplete",
"productivity"
],
"repository": "https://github.com/noseglid/autocomplete-java-minus",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-package-deps": "^4.0.1",
"bluebird": "^3.3.5",
"first-mate": "^6.0.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"eslint": "^2.9.0",
"eslint-config-atom-build": "^3.0.0"
},
"package-deps": [
"java-classpath-registry"
],
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
},
"consumedServices": {
"java.import": {
"versions": {
"^1.0.0": "consumeJavaImport"
}
},
"java.classpath-registry": {
"versions": {
"^1.0.0": "consumeJavaClasspathRegistry"
}
}
}
}