forked from nteract/hydrogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.81 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "Hydrogen",
"main": "./lib/main",
"version": "1.15.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 .",
"flow": "flow",
"fix": "eslint . --fix",
"prettier": "prettier --write 'lib/**/*.js' 'spec/**/*.js'",
"build:docs": "markdox lib/plugin-api/hydrogen-provider.js lib/plugin-api/hydrogen-kernel.js -o docs/PluginAPI.md",
"precommit": "lint-staged"
},
"atomTestRunner": "atom-jasmine2-test-runner",
"repository": "https://github.com/nteract/hydrogen",
"license": "MIT",
"engines": {
"atom": ">=1.17.0 <2.0.0"
},
"lint-staged": {
"{lib,spec}/**/*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@jupyterlab/services": "^0.42.0",
"@nteract/commutable": "^1.1.4",
"@nteract/display-area": "^1.3.1",
"@nteract/transform-plotly": "^1.2.0",
"@nteract/transforms": "^1.1.0",
"atom-select-list": "^0.2.0",
"escape-carriage": "^1.2.0",
"escape-string-regexp": "^1.0.5",
"immutable": "^3.8.1",
"jmp": "^0.7.5",
"lodash": "^4.14.0",
"loophole": "^1.1.0",
"mobx": "^3.1.11",
"mobx-react": "^4.2.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-rangeslider": "^2.0.1",
"requirejs": "^2.2.0",
"resize-observer-polyfill": "^1.4.2",
"spawnteract": "^3.0.0",
"tildify": "^1.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": {
"atom-jasmine2-test-runner": "^0.7.0",
"babel-eslint": "^7.1.0",
"enzyme": "^2.8.2",
"eslint": "^3.16.1",
"eslint-config-prettier": "^2.0.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-prettier": "^2.0.1",
"flow-bin": "^0.46.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"markdox": "^0.1.10",
"mobx-react-devtools": "^4.2.11",
"prettier": "~1.3.0",
"react-test-renderer": "^15.5.4"
}
}