-
Notifications
You must be signed in to change notification settings - Fork 333
/
package.json
143 lines (143 loc) · 4.13 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "Hydrogen",
"main": "./dist/main",
"version": "2.16.4",
"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": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"build.test": "npm run build && npm run test",
"test": "echo 'test without rebuilding' && atom --test spec",
"clean": "shx rm -rf dist",
"clean.prod": "shx rm -rf ./dist/**/*.d.ts ./dist/tsconfig.tsbuildinfo",
"dev": "npm run clean && tsc -p lib/tsconfig.json --watch",
"tsc": "tsc -p lib/tsconfig.json || echo done",
"build": "npm run clean && npm run tsc && npm run clean.prod",
"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",
"build-commit": "build-commit -o dist",
"prepare": "npm run build"
},
"atomTestRunner": "atom-jasmine3-test-runner",
"repository": "https://github.com/nteract/hydrogen",
"license": "MIT",
"engines": {
"atom": ">=1.28.0 <2.0.0"
},
"dependencies": {
"@jupyterlab/services": "^0.52.0",
"@nteract/commutable": "^7.1.4",
"@nteract/markdown": "^4.5.1",
"@nteract/mathjax": "^4.0.2",
"@nteract/outputs": "^3.0.0",
"@nteract/plotly": "^1.48.3",
"@nteract/transform-vega": "^7.0.0",
"anser": "^2.0.1",
"atom-select-list": "^0.8.1",
"escape-carriage": "^1.2.0",
"escape-string-regexp": "^4.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": "^17.0.2",
"react-dom": "^17.0.2",
"react-table": "^6.11.5",
"spawnteract": "^5.1.0",
"strip-indent": "^3.0.0",
"styled-components": "^5.2.3",
"tildify": "^2.0.0",
"uuid": "^8.0.0",
"ws": "^7.0.0",
"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": {
"@nteract/types": "^7.1.7",
"@types/atom": "^1.40.10",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/react-table": "^6",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.9",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.1",
"atom-jasmine3-test-runner": "^5.2.5",
"build-commit": "^0.1.4",
"electron": "^6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "7",
"eslint-config-atomic": "^1.14.4",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"markdox": "^0.1.10",
"prettier-config-atomic": "^2.0.5",
"react-test-renderer": "^17.0.2",
"shx": "^0.3.3",
"typescript": "^4.2.4"
}
}