package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@jupyterlab/mainmenu-extension",
  3. "version": "0.6.0-1",
  4. "description": "JupyterLab - Main Menu Extension",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "license": "BSD-3-Clause",
  10. "author": "Project Jupyter",
  11. "files": [
  12. "lib/*.d.ts",
  13. "lib/*.js.map",
  14. "lib/*.js"
  15. ],
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "directories": {
  19. "lib": "lib/"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/jupyterlab/jupyterlab.git"
  24. },
  25. "scripts": {
  26. "build": "tsc",
  27. "clean": "rimraf lib",
  28. "watch": "tsc -w --listEmittedFiles"
  29. },
  30. "dependencies": {
  31. "@jupyterlab/application": "^0.17.0-1",
  32. "@jupyterlab/apputils": "^0.17.0-1",
  33. "@jupyterlab/mainmenu": "^0.6.0-1",
  34. "@phosphor/algorithm": "^1.1.2",
  35. "@phosphor/disposable": "^1.1.2",
  36. "@phosphor/widgets": "^1.6.0"
  37. },
  38. "devDependencies": {
  39. "rimraf": "~2.6.2",
  40. "typescript": "~2.9.2"
  41. },
  42. "jupyterlab": {
  43. "extension": true
  44. }
  45. }