forked from nteract/hydrogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.26 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "Hydrogen",
"main": "./lib/main",
"version": "2.13.1",
"description": "Run code interactively, inspect data, and plot. All the power of Jupyter kernels, inside your favorite text editor.",
"author": "nteract contributors",
"keywords": [
"execute",
"run",
"jupyter",
"ipython",
"julia",
"python",
"torch",
"ijulia",
"irkernel",
"itorch",
"plot",
"image"
],
"activationCommands": {
"atom-text-editor": [
"hydrogen:start-local-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",
"hydrogen:export-notebook"
],
"atom-workspace": [
"hydrogen:import-notebook"
]
},
"scripts": {
"flow": "flow",
"prettier": "prettier --write \"lib/**/*.js\" \"spec/**/*.js\"",
"build:services-docs": "markdox lib/services/index.js -o lib/services/README.md",
"build:plugin-docs": "markdox lib/plugin-api/hydrogen-provider.js lib/plugin-api/hydrogen-kernel.js -o docs/PluginAPI.md",
"build:docs": "npm run build:plugin-docs && npm run build:services-docs"
},
"atomTestRunner": "atom-jasmine3-test-runner",
"repository": "https://github.com/nteract/hydrogen",
"license": "MIT",
"engines": {
"atom": ">=1.28.0 <2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{lib,spec}/**/*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@babel/runtime-corejs2": "^7.0.0",
"@jupyterlab/services": "^0.52.0",
"@nteract/commutable": "^7.1.4",
"@nteract/markdown": "^4.0.0",
"@nteract/mathjax": "^4.0.1",
"@nteract/outputs": "^2.1.5",
"@nteract/plotly": "^1.48.3",
"@nteract/transform-vega": "^6.0.0",
"anser": "^1.4.8",
"atom-select-list": "^0.7.0",
"escape-carriage": "^1.2.0",
"escape-string-regexp": "^2.0.0",
"jmp": "^2.0.0",
"kernelspecs": "^2.0.0",
"lodash": "^4.14.0",
"mathjax-electron": "^3.0.0",
"mobx": "^5.1.1",
"mobx-react": "^6.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-rangeslider": "^2.1.0",
"react-table": "^6.10.0",
"spawnteract": "^5.1.0",
"strip-indent": "^3.0.0",
"tildify": "^2.0.0",
"uuid": "^3.2.1",
"ws": "^3.3.1",
"xmlhttprequest": "^1.8.0"
},
"consumedServices": {
"autocomplete.watchEditor": {
"versions": {
"^1.0.0": "consumeAutocompleteWatchEditor"
}
},
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"4.0.0": "provideAutocompleteResults"
}
},
"hydrogen.provider": {
"versions": {
"1.1.0": "provideHydrogen",
"1.2.0": "provideHydrogen"
}
}
},
"devDependencies": {
"atom-jasmine3-test-runner": "^4.0.0",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"flow-bin": "^0.114.0",
"husky": "^3.0.0",
"lint-staged": "^9.0.0",
"markdox": "^0.1.10",
"mobx-react-devtools": "^6.0.0",
"prettier": "^1.14.3",
"react-test-renderer": "^16.0.0"
}
}