mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-09 03:50:45 +08:00
2b09d59b1d
it's not true watching, just polling every few seconds. Help docs still point to this command, and we need something for devs as `ignore_minified_js` is gone.
26 lines
607 B
JSON
26 lines
607 B
JSON
{
|
|
"name": "jupyter-notebook-deps",
|
|
"version": "4.0.0",
|
|
"description": "Jupyter Notebook nodejs dependencies",
|
|
"author": "Jupyter Developers",
|
|
"license": "BSD-3-Clause",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jupyter/notebook.git"
|
|
},
|
|
"scripts": {
|
|
"bower": "bower install",
|
|
"build": "python setup.py js css",
|
|
"build:watch": "set -e; while true; do npm run build; sleep 3; done"
|
|
},
|
|
"devDependencies": {
|
|
"bower": "*",
|
|
"less": "~2",
|
|
"requirejs": "^2.1.17"
|
|
},
|
|
"dependencies": {
|
|
"preact": "^7.1.0",
|
|
"preact-compat": "^3.9.4"
|
|
}
|
|
}
|