-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 935 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
39
40
41
42
43
44
45
46
{
"name": "atom-gtags",
"main": "./lib/main",
"version": "0.5.7",
"description": "Atom Gtags",
"keywords": [
"gtags",
"ctags",
"tags",
"global"
],
"activationCommands": {
"atom-workspace": [
"atom-gtags:toggle",
"atom-gtags:update-tags",
"atom-gtags:build-tags",
"atom-gtags:get-definitions",
"atom-gtags:get-references",
"atom-gtags:get-symbols-of-file",
"atom-gtags:lookup-definitions"
]
},
"repository": "https://github.com/codingbelief/atom-gtags",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "2.0.0",
"fuzzaldrin": "^2.1"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
}
}