package.json 539 B

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