You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.6 KiB
35 lines
1.6 KiB
{
|
|
"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 --allow-root --config.interactive=false",
|
|
"build": "npm run build:css && npm run build:js",
|
|
"build:css": "concurrent \"npm run build:css:ipython\" \"npm run build:css:style\"",
|
|
"build:css:ipython": "lessc --source-map --include-path=./notebook/static/ ./notebook/static/style/ipython.less ./notebook/static/style/ipython.min.css",
|
|
"build:css:style": "lessc --source-map --include-path=./notebook/static/ ./notebook/static/style/style.less ./notebook/static/style/style.min.css",
|
|
"build:js": "concurrent \"npm run build:js:tree\" \"npm run build:js:terminal\" \"npm run build:js:notebook\" \"npm run build:js:edit\" \"npm run build:js:auth\"",
|
|
"build:js:notebook": "node ./notebook/build.js notebook/js/main.js notebook/js/main.bundle.js",
|
|
"build:js:edit": "node ./notebook/build.js edit/js/main.js edit/js/main.bundle.js",
|
|
"build:js:tree": "node ./notebook/build.js tree/js/main.js tree/js/main.bundle.js",
|
|
"build:js:auth": "node ./notebook/build.js auth/js/main.js auth/js/main.bundle.js",
|
|
"build:js:terminal": "node ./notebook/build.js terminal/js/main.js terminal/js/main.bundle.js"
|
|
},
|
|
"devDependencies": {
|
|
"aliasify": "^1.7.2",
|
|
"bower": "*",
|
|
"browserify": "^11.0.1",
|
|
"concurrently": "^0.1.1",
|
|
"less": "~2"
|
|
},
|
|
"dependencies": {
|
|
"jquery": "^2.1.4"
|
|
}
|
|
}
|