forked from dask/dask-labextension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.2 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
{
"name": "dask-labextension",
"version": "0.4.0-pre.7",
"description": "A JupyterLab extension for dask.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dask/dask-labextension"
},
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"dask"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"precommit": "lint-staged",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^1.0.0-alpha.11",
"@jupyterlab/apputils": "^1.0.0-alpha.11",
"@jupyterlab/codeeditor": "^1.0.0-alpha.11",
"@jupyterlab/console": "^1.0.0-alpha.11",
"@jupyterlab/coreutils": "3.0.0-alpha.11",
"@jupyterlab/mainmenu": "^1.0.0-alpha.11",
"@jupyterlab/notebook": "^1.0.0-alpha.12",
"@jupyterlab/services": "4.0.0-alpha.11",
"@phosphor/algorithm": "^1.1.2",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/domutils": "^1.1.2",
"@phosphor/dragdrop": "^1.3.0",
"@phosphor/messaging": "^1.2.2",
"@phosphor/signaling": "^1.2.2",
"@phosphor/widgets": "^1.7.1",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"@types/react": "~16.4.13",
"@types/react-dom": "~16.0.7",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"rimraf": "^2.6.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.1.0"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"schema/*.json",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
},
"author": "Brian Granger, Luke Canavan, Ian Rose",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dask/dask-labextension/issues"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/dask/dask-labextension",
"resolutions": {
"@types/react": "~16.4.13"
},
"private": false
}