forked from heavyai/jupyterlab-heavyai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.02 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
{
"name": "jupyterlab-omnisci",
"version": "0.12.0",
"description": "JupyterLab - Omnisci integration",
"homepage": "https://github.com/Quansight/jupyterlab-omnisci",
"bugs": {
"url": "https://github.com/Quansight/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/Quansight/jupyterlab-omnisci.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"precommit": "lint-staged",
"prettier": "prettier --write '**/*{.ts,.tsx,.css,.json,.md}'",
"tslint": "tslint -c tslint.json --project tsconfig.json '**/*{.ts,.tsx}'",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^1.0.0",
"@jupyterlab/apputils": "^1.0.0",
"@jupyterlab/codeeditor": "^1.0.0",
"@jupyterlab/completer": "^1.0.0",
"@jupyterlab/console": "^1.0.0",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/docregistry": "^1.0.0",
"@jupyterlab/launcher": "^1.0.0",
"@jupyterlab/mainmenu": "^1.0.0",
"@jupyterlab/notebook": "^1.0.0",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@mapd/connector": "^4.6.1",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/datagrid": "^0.1.8",
"@phosphor/signaling": "^1.2.2",
"@phosphor/widgets": "^1.8.0"
},
"devDependencies": {
"@types/webpack-env": "1.13.9",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.14.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"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"jupyterlab": {
"extension": "lib/plugins",
"mimeExtension": "lib/mimeextensions",
"schemaDir": "schema"
}
}