forked from g2nb/igv-jupyter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.97 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
{
"name": "@igvteam/igv-jupyter",
"version": "1.0.0",
"description": "Jupyter extension for embedding the igv.js genome visualization in a notebook",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.{js,css}",
"nbtools/**/*.json",
"dist/*.{js,css}"
],
"homepage": "https://github.com/igvteam/igv-jupyter",
"bugs": {
"url": "https://github.com/igvteam/igv-jupyter/issues"
},
"license": "MIT",
"author": {
"name": "Thorin Tabor",
"email": "[email protected]"
},
"main": "lib/index.js",
"style": "lib/index.css",
"repository": {
"type": "git",
"url": "https://github.com/igvteam/igv-jupyter"
},
"scripts": {
"build": "jlpm run build:labextension && jlpm run build:nbextension",
"build:labextension": "jupyter labextension build .",
"build:nbextension": "webpack --mode production",
"build:labextension:dev": "jupyter labextension build --development True ."
},
"dependencies": {
"tapable": "^2.2.0",
"webpack": "^5.67.0"
},
"devDependencies": {
"@jupyter-widgets/base": "^4.0.0",
"@jupyterlab/apputils": "^3.0.3",
"@jupyterlab/builder": "^3.0.5",
"@jupyterlab/notebook": "^3.0.4",
"btoa": "^1.2.1",
"css-loader": "^5.0.2",
"file-loader": "^6.2.0",
"process": "0.11.10",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.17",
"webpack-cli": "^4.9.2"
},
"jupyterlab": {
"extension": "lib/plugin",
"schemaDir": "schema",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
},
"discovery": {
"kernel": [
{
"kernel_spec": {
"language": "^python"
},
"base": {
"name": "nbtools"
},
"managers": [
"pip",
"conda"
]
}
]
},
"outputDir": "igv/labextension"
}
}