forked from nteract/hydrogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.94 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
{
"name": "greyatom-hydrogen",
"main": "./lib/main",
"version": "1.9.0",
"description": "Run code and get results inline using Jupyter kernels like IPython, IJulia, and iTorch",
"author": "Will Whitney <[email protected]>",
"keywords": [
"execute",
"run",
"jupyter",
"ipython",
"julia",
"python",
"torch",
"ijulia",
"itorch",
"plot",
"image"
],
"activationCommands": {
"atom-text-editor": [
"hydrogen:select-kernel",
"hydrogen:connect-to-remote-kernel",
"hydrogen:run",
"hydrogen:run-and-move-down",
"hydrogen:run-all",
"hydrogen:run-all-above",
"hydrogen:run-cell",
"hydrogen:run-cell-and-move-down"
]
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix",
"build:docs": "markdox lib/plugin-api/hydrogen-provider.js lib/plugin-api/hydrogen-kernel.js -o PLUGIN_API.md"
},
"repository": "https://github.com/greyatom-edu-tech/greyatom-hydrogen",
"license": "MIT",
"engines": {
"atom": ">=1.6.0 <2.0.0"
},
"dependencies": {
"@jupyterlab/services": "^0.39.0",
"atom-message-panel": "^1.2.4",
"atom-space-pen-views": "^2.0.5",
"escape-string-regexp": "^1.0.5",
"jmp": "^0.7.5",
"lodash": "^4.14.0",
"requirejs": "^2.2.0",
"spawnteract": "^2.1.1",
"tildify": "^1.2.0",
"transformime": "^3.2.0",
"uuid": "^3.0.1",
"ws": "^2.0.0",
"xmlhttprequest": "^1.8.0"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
},
"hydrogen.provider": {
"versions": {
"1.0.0": "provideHydrogen"
}
}
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"markdox": "^0.1.10"
}
}