package.json 605 B

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