-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
100 lines (100 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "julia-client",
"main": "./lib/julia-client",
"version": "0.12.6",
"description": "The core package of Juno, the Julia IDE",
"keywords": [
"julia",
"Juno",
"IDE",
"evaluation",
"run",
"inline",
"completion",
"REPL",
"terminal",
"workspace",
"outline",
"documentation",
"plot",
"debugger"
],
"repository": "https://github.com/JunoLab/atom-julia-client",
"license": "MIT",
"engines": {
"atom": ">=1.56.0 <2.0.0"
},
"dependencies": {
"atom-package-deps": "*",
"atom-select-list": "^0.7.2",
"etch": "^0.14",
"fuzzaldrin-plus": "^0.6.0",
"node-pty-prebuilt-multiarch": "0.9.0",
"object-hash": "^2.0.3",
"physical-cpu-count": "*",
"semver": "^6.3.0",
"ssh2": "^0.8.4",
"underscore-plus": "*"
},
"scripts": {
"postinstall": "node script/postinstall.js"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"tool-bar": {
"versions": {
"^0 || ^1": "consumeToolBar"
}
},
"ink": {
"versions": {
"*": "consumeInk"
}
},
"ftp-remote.getCurrentServerConfig": {
"versions": {
"0.1.0": "consumeGetServerConfig"
}
},
"ftp-remote.getCurrentServerName": {
"versions": {
"0.1.0": "consumeGetServerName"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"4.0.0": "provideAutoComplete"
}
},
"julia-client": {
"description": "Run a Julia process",
"versions": {
"0.1.0": "provideClient"
}
},
"hyperclick": {
"versions": {
"0.1.0": "provideHyperclick"
}
}
},
"uriHandler": {
"method": "handleURI",
"deferActivation": false
},
"package-deps": [
"ink",
"language-julia"
]
}