package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@jupyterlab/notebook",
  3. "version": "3.1.0-alpha.3",
  4. "description": "JupyterLab - Notebook",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "sideEffects": [
  16. "style/**/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/*.d.ts",
  26. "lib/*.js.map",
  27. "lib/*.js",
  28. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  29. "style/index.js"
  30. ],
  31. "scripts": {
  32. "build": "tsc -b",
  33. "build:test": "tsc --build tsconfig.test.json",
  34. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "docs": "typedoc src",
  36. "prepublishOnly": "npm run build",
  37. "test": "jest",
  38. "test:cov": "jest --collect-coverage",
  39. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  40. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  41. "test:watch": "jest --runInBand --watch",
  42. "watch": "tsc -b --watch"
  43. },
  44. "dependencies": {
  45. "@jupyterlab/apputils": "^3.1.0-alpha.3",
  46. "@jupyterlab/cells": "^3.1.0-alpha.3",
  47. "@jupyterlab/codeeditor": "^3.1.0-alpha.3",
  48. "@jupyterlab/coreutils": "^5.1.0-alpha.3",
  49. "@jupyterlab/docregistry": "^3.1.0-alpha.3",
  50. "@jupyterlab/nbformat": "^3.1.0-alpha.3",
  51. "@jupyterlab/observables": "^4.1.0-alpha.3",
  52. "@jupyterlab/rendermime": "^3.1.0-alpha.3",
  53. "@jupyterlab/services": "^6.1.0-alpha.3",
  54. "@jupyterlab/statusbar": "^3.1.0-alpha.3",
  55. "@jupyterlab/translation": "^3.1.0-alpha.3",
  56. "@jupyterlab/ui-components": "^3.1.0-alpha.3",
  57. "@lumino/algorithm": "^1.3.3",
  58. "@lumino/coreutils": "^1.5.3",
  59. "@lumino/domutils": "^1.2.3",
  60. "@lumino/dragdrop": "^1.7.1",
  61. "@lumino/messaging": "^1.4.3",
  62. "@lumino/properties": "^1.2.3",
  63. "@lumino/signaling": "^1.4.3",
  64. "@lumino/virtualdom": "^1.8.0",
  65. "@lumino/widgets": "^1.19.0",
  66. "react": "^17.0.1"
  67. },
  68. "devDependencies": {
  69. "@jupyterlab/testutils": "^3.1.0-alpha.3",
  70. "@types/jest": "^26.0.10",
  71. "jest": "^26.4.2",
  72. "rimraf": "~3.0.0",
  73. "ts-jest": "^26.3.0",
  74. "typedoc": "~0.20.0-beta.27",
  75. "typescript": "~4.1.3"
  76. },
  77. "publishConfig": {
  78. "access": "public"
  79. },
  80. "styleModule": "style/index.js"
  81. }