forked from atom/symbols-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 821 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
{
"name": "symbols-view",
"version": "0.94.0",
"main": "./lib/main",
"description": "Jump to a function/method in the current editor with `cmd-r`.",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
"symbols-view:toggle-project-symbols"
],
"atom-text-editor": [
"symbols-view:go-to-declaration",
"symbols-view:return-from-declaration",
"symbols-view:toggle-file-symbols"
]
},
"dependencies": {
"async": "^0.2.6",
"atom-space-pen-views": "^2.0.0",
"ctags": "^2.0.0",
"fs-plus": "^2.0.0",
"humanize-plus": "1.4.2",
"pathwatcher": "^4.3",
"q": "^1.1.2",
"temp": "~0.8.1"
},
"repository": "https://github.com/atom/symbols-view",
"engines": {
"atom": "*"
},
"devDependencies": {
"coffeelint": "^1.9.3"
}
}