forked from lux-org/lux-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 910 Bytes
/
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
{
"name": "logger",
"version": "0.0.1",
"description": "Custom Logger for User Study",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"webpack.config.js",
"tsconfig.json",
"logger/*.py",
"logger/nbextension/static/*",
"*.py",
"src/*.js",
"dist/*.js",
"css/*.css"
],
"license": "Apache License",
"author": {
"name": "Doris Jung-Lin Lee",
"email": "[email protected]"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lux-org/lux-widget"
},
"scripts": {
"postinstall": "jupyter nbextension install --sys-prefix --symlink --overwrite --py logger && jupyter nbextension enable --sys-prefix --py logger",
"build": "npm install"
},
"dependencies": {},
"jupyterlab": {
"extension": true
}
}