notebook/package.json

47 lines
1.6 KiB
JSON
Raw Normal View History

{
2015-04-15 05:35:43 +08:00
"name": "jupyter-notebook-deps",
"version": "4.0.0",
"description": "Jupyter Notebook nodejs dependencies",
"author": "Jupyter Developers",
"license": "BSD-3-Clause",
2015-04-15 05:35:43 +08:00
"repository": {
"type": "git",
2015-05-14 01:56:32 +08:00
"url": "https://github.com/jupyter/notebook.git"
2015-04-15 05:35:43 +08:00
},
"scripts": {
2016-04-22 00:21:43 +08:00
"lint": "eslint --quiet notebook/",
"bower": "bower install --allow-root --config.interactive=false",
"build:watch": "concurrent \"npm run build:css:watch\" \"npm run build:js:watch\"",
2016-05-08 19:13:46 +08:00
"build": "npm run build:js && npm run build:css",
2016-05-27 08:30:36 +08:00
"build:css": "concurrent \"npm run build:css:ipython\" \"npm run build:css:style\"",
"build:css:ipython": "lessc --include-path=notebook/static notebook/static/style/ipython.less notebook/static/style/ipython.min.css",
"build:css:style": "lessc --include-path=notebook/static notebook/static/style/style.less notebook/static/style/style.min.css",
2016-08-05 03:53:45 +08:00
"build:css:watch": "./scripts/less-watch ./notebook/static",
"build:js": "webpack",
"build:js:watch": "npm run build:js -- --watch"
},
2015-04-15 05:35:43 +08:00
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
2015-04-15 05:35:43 +08:00
"bower": "*",
"concurrently": "^1.0.0",
2016-07-05 22:33:26 +08:00
"css-loader": "^0.23.1",
2016-04-22 00:21:43 +08:00
"eslint": "^2.8.0",
2016-07-05 22:33:26 +08:00
"json-loader": "^0.5.4",
2015-08-13 03:52:16 +08:00
"less": "~2",
"requirejs": "^2.1.17",
2016-07-05 22:33:26 +08:00
"style-loader": "^0.13.1",
"underscore": "^1.8.3",
"webpack": "^1.12.13"
2016-02-05 05:18:31 +08:00
},
"dependencies": {
"es6-promise": "^4.0.5",
"moment": "^2.8.4",
"preact": "^4.5.1",
"preact-compat": "^1.7.0",
2016-11-12 07:54:59 +08:00
"xterm": "^2.1.0"
2015-04-15 05:35:43 +08:00
}
}