forked from JunoLab/atom-julia-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "julia-client",
"main": "./lib/julia-client",
"version": "0.1.3",
"description": "Julia Evaluation",
"keywords": [],
"activationCommands": {
"atom-text-editor": [
"julia-client:evaluate",
"julia-client:evaluate-all"
],
"atom-workspace": [
"julia-client:open-a-repl",
"julia-client:start-repl-client",
"julia-client:start-julia",
"julia-client:toggle-console",
"julia:open-startup-file",
"julia:open-julia-home",
"julia:open-package-in-new-window"
]
},
"repository": "https://github.com/JunoLab/atom-julia-client",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.0.0"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"ink": {
"versions": {
"*": "consumeInk"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "completions"
}
}
}
}