-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
72 lines (72 loc) · 1.99 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
{
"name": "jupyterlab-omnisci",
"version": "2.0.0",
"description": "JupyterLab - Omnisci integration",
"homepage": "https://github.com/omnisci/jupyterlab-omnisci",
"bugs": {
"url": "https://github.com/omnisci/jupyterlab-omnisci/issues"
},
"license": "Apache-2.0",
"author": "Omnisci",
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"schema/*.json",
"style/*.*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/omnisci/jupyterlab-omnisci.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prettier": "prettier src --write '**/*{.ts,.tsx,.css,.json,.md}'",
"tslint": "tslint -c tslint.json --project tsconfig.json '**/*{.ts,.tsx}'",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/codeeditor": "^2.0.0",
"@jupyterlab/completer": "^2.0.0",
"@jupyterlab/console": "^2.0.0",
"@jupyterlab/coreutils": "^4.2.3",
"@jupyterlab/docregistry": "^2.0.0",
"@jupyterlab/launcher": "^2.0.0",
"@jupyterlab/mainmenu": "^2.0.0",
"@jupyterlab/notebook": "^2.0.0",
"@jupyterlab/rendermime-interfaces": "^2.2.0",
"@jupyterlab/settingregistry": "2.2.3",
"@jupyterlab/statedb": "2.2.3",
"@lumino/coreutils": "^1.3.1",
"@lumino/datagrid": "0.14.0",
"@lumino/signaling": "^1.2.2",
"@lumino/widgets": "^1.9.0",
"@mapd/connector": "~5.2.0",
"vega": "^5.4.0",
"vega-lite": "~3.4.0"
},
"devDependencies": {
"@types/webpack-env": "1.13.9",
"crypto": "1.0.1",
"prettier": "^1.14.0",
"react": "~16.9.0",
"rimraf": "~2.6.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "~3.5.1"
},
"jupyterlab": {
"extension": "lib/plugins",
"mimeExtension": "lib/mimeextensions",
"schemaDir": "schema"
}
}