-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 3.24 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@ideonate/jupyter-containds",
"version": "0.2.2",
"description": "Companion Jupyter extension for ContainDS",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"containds",
"cdsdashboards",
"dashboards",
"jupyterhub",
"widgets"
],
"homepage": "https://github.com/ideonate/jupyter-containds",
"bugs": {
"url": "https://github.com/ideonate/jupyter-containds/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Ideonate",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"dist/*.js",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/ideonate/jupyter-containds.git"
},
"scripts": {
"build": "yarn run build:lib && yarn run build:nbextension",
"build:labextension": "jupyter labextension build .",
"build:lib": "tsc",
"build:nbextension": "webpack -p",
"build:all": "yarn run build && yarn run build:labextension",
"clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyter_containds/labextension",
"clean:nbextension": "rimraf jupyter_containds/nbextension/static/index.js*",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"prepack": "yarn run build:lib",
"test": "yarn run jest",
"watch": "yarn-run-all -p watch:*",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch"
},
"dependencies": {
"@jupyter-widgets/base": "^3.0.0 || ^4.0.0",
"@jupyterlab/application": "^2.0.0 || ^3.0.0",
"@jupyterlab/coreutils": "^4.0.0 || ^5.0.0",
"@jupyterlab/launcher": "^2.0.0 || ^3.0.0",
"@jupyterlab/mainmenu": "^2.0.0 || ^3.0.0",
"@jupyterlab/notebook": "^2.0.0 || ^3.0.0",
"@jupyterlab/services": "^5.0.0 || ^6.0.0",
"@lumino/disposable": "^1.3.5",
"@lumino/polling": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@jupyterlab/builder": "^3.0.0",
"@types/jest": "^26.0.0",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"acorn": "^7.2.0",
"css-loader": "^3.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.0",
"jest-fetch-mock": "^1.6.6",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"prettier": "^2.0.5",
"rimraf": "^2.6.2",
"source-map-loader": "^1.1.3",
"style-loader": "^1.0.0",
"ts-jest": "^26.0.0",
"ts-loader": "^8.0.12",
"typescript": "~4.1.3",
"webpack": "^5.0.0",
"webpack-cli": "^3.3.10"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "jupyter_containds/labextension",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}