forked from tststs/atom-ternjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 882 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": "atom-ternjs",
"main": "./lib/atom-ternjs",
"version": "0.8.2",
"private": false,
"description": "Javascript code intelligence for atom with tern.js. Uses suggestion provider by autocomplete-plus.",
"activationCommands": {},
"repository": "https://github.com/tststs/atom-ternjs",
"license": "MIT",
"engines": {
"atom": ">=1.0.0"
},
"dependencies": {
"jquery": "*",
"loophole": "*",
"tern": "git+https://github.com/marijnh/tern.git",
"tern-lint": "git+https://github.com/angelozerr/tern-lint.git",
"underscore-plus": "*"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
},
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"keywords": [
"javascript",
"autocomplete-plus",
"autocomplete",
"tern"
]
}