This repository has been archived by the owner on Apr 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.89 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
{
"name": "@visualstorytelling/jupyterlab_nbprovenance",
"version": "0.2.0",
"description": "JupyterLab Notebook Provenance",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab extension"
],
"homepage": "https://github.com/Caleydo/jupyterlab_nbprovenance",
"bugs": {
"url": "https://github.com/Caleydo/jupyterlab_nbprovenance/issues"
},
"license": "BSD-3-Clause",
"author": "The Caleydo Team",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Caleydo/jupyterlab_nbprovenance.git"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build",
"extension:install": "jupyter labextension install jupyterlab_nbprovenance",
"extension:uninstall": "jupyter labextension uninstall jupyterlab_nbprovenance",
"extension:enable": "jupyter labextension enable jupyterlab_nbprovenance",
"extension:disable": "jupyter labextension disable jupyterlab_nbprovenance"
},
"dependencies": {
"@jupyterlab/application": "~0.19.0",
"@jupyterlab/apputils": "~0.19.0",
"@jupyterlab/console": "~0.19.0",
"@jupyterlab/filebrowser": "~0.19.0",
"@jupyterlab/mainmenu": "~0.8.1",
"@jupyterlab/notebook": "~0.19.0",
"@jupyterlab/rendermime-interfaces": "~1.2.1",
"@phosphor/widgets": "~1.6.0",
"@visualstorytelling/provenance-core": "1.1.7",
"@visualstorytelling/provenance-tree-visualization-react": "~1.0.3",
"@visualstorytelling/slide-deck-visualization": "~1.0.1",
"node-sass": "~4.9.3",
"react": "~16.4.2",
"react-dom": "~16.4.2"
},
"devDependencies": {
"tslint": "~5.11.0",
"typescript": "~3.0.3",
"watch": "~1.0.2"
},
"jupyterlab": {
"extension": true
}
}