package.json 546 B

123456789101112131415161718192021
  1. {
  2. "private": true,
  3. "name": "jupyterlab-examples",
  4. "dependencies": {
  5. "jupyterlab": "file:..",
  6. "jupyter-js-utils": "^0.4.0",
  7. "phosphor-commandpalette": "^0.2.0",
  8. "phosphor-keymap": "^0.8.0",
  9. "phosphor-splitpanel": "^1.0.0-rc.1",
  10. "phosphor-widget": "^1.0.0-rc.1"
  11. },
  12. "scripts": {
  13. "build": "cd .. && npm run build:examples",
  14. "clean": "rimraf node_modules",
  15. "postinstall": "npm dedupe",
  16. "update": "rimraf node_modules/jupyterlab && npm install"
  17. },
  18. "devDependencies": {
  19. "rimraf": "^2.5.2"
  20. }
  21. }