-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "jupyterlab_ou_brand_extension",
"version": "0.2.3",
"description": "Custom branding extension for JupyterLab and RetroLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/psychemedia/jupyterlab_ou_brand_extension",
"bugs": {
"url": "https://github.com/psychemedia/jupyterlab_ou_brand_extension/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Tony Hirst",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/psychemedia/jupyterlab_ou_brand_extension.git"
},
"scripts": {
"build": "jlpm run build:labextension:dev",
"build:prod": "jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"clean:labextension": "rimraf jupyterlab_ou_brand_extension/labextension",
"clean:all": "jlpm run clean:labextension",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run build:prod",
"prettier": "prettier --write \"**/*{.js,.jsx,.css,.json,.md}\"",
"watch": "jlpm run watch:labextension",
"watch:labextension": "jupyter labextension watch ."
},
"devDependencies": {
"prettier": ">=2.0.0",
"rimraf": ">=3.0.0"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"jupyterlab": {
"extension": true,
"outputDir": "jupyterlab_ou_brand_extension/labextension"
},
"dependencies": {
"@jupyterlab/builder": "^4.0.5"
}
}