forked from jupyter-widgets/ipywidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 934 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
{
"private": true,
"scripts": {
"build": "lerna run build --ignore \"@jupyter-widgets/example-*\"",
"build:examples": "lerna run build --scope \"@jupyter-widgets/example-*\" --include-filtered-dependencies",
"clean": "lerna run clean",
"integrity": "node scripts/package-integrity.js",
"lint": "lerna run lint",
"publish": "yarn run clean && yarn run build && lerna publish -m \"Publish npm packages\"",
"update-dependency": "update-dependency --lerna",
"updated": "lerna updated"
},
"devDependencies": {
"@jupyterlab/buildutils": "1.0.0-alpha.8",
"lerna": "^3.2.1"
},
"workspaces": [
"packages/*",
"widgetsnbextension",
"examples/*"
],
"resolutions": {
"@jupyter-widgets/notebook-manager/**/@jupyterlab/services": "^2.0.0",
"@jupyter-widgets/jupyterlab-manager/**/@jupyterlab/services": "4.0.0-alpha.8",
"**/@jupyterlab/services": "4.0.0-alpha.8"
}
}