package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@jupyterlab/docregistry",
  3. "version": "3.2.0-beta.0",
  4. "description": "JupyterLab - Document Registry",
  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/**/*.css",
  17. "style/index.js"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "directories": {
  23. "lib": "lib/"
  24. },
  25. "files": [
  26. "lib/*.d.ts",
  27. "lib/*.js.map",
  28. "lib/*.js",
  29. "style/**/*.css",
  30. "style/index.js"
  31. ],
  32. "scripts": {
  33. "build": "tsc -b",
  34. "build:test": "tsc --build tsconfig.test.json",
  35. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  36. "docs": "typedoc src",
  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. "watch": "tsc -b --watch"
  42. },
  43. "dependencies": {
  44. "@jupyterlab/apputils": "^3.2.0-beta.0",
  45. "@jupyterlab/codeeditor": "^3.2.0-beta.0",
  46. "@jupyterlab/codemirror": "^3.2.0-beta.0",
  47. "@jupyterlab/coreutils": "^5.2.0-beta.0",
  48. "@jupyterlab/docprovider": "^3.2.0-beta.0",
  49. "@jupyterlab/observables": "^4.2.0-beta.0",
  50. "@jupyterlab/rendermime": "^3.2.0-beta.0",
  51. "@jupyterlab/rendermime-interfaces": "^3.2.0-beta.0",
  52. "@jupyterlab/services": "^6.2.0-beta.0",
  53. "@jupyterlab/shared-models": "^3.2.0-beta.0",
  54. "@jupyterlab/translation": "^3.2.0-beta.0",
  55. "@jupyterlab/ui-components": "^3.2.0-beta.0",
  56. "@lumino/algorithm": "^1.3.3",
  57. "@lumino/coreutils": "^1.5.3",
  58. "@lumino/disposable": "^1.4.3",
  59. "@lumino/messaging": "^1.4.3",
  60. "@lumino/signaling": "^1.4.3",
  61. "@lumino/widgets": "^1.19.0",
  62. "yjs": "^13.5.6"
  63. },
  64. "devDependencies": {
  65. "@jupyterlab/testutils": "^3.2.0-beta.0",
  66. "@types/jest": "^26.0.10",
  67. "jest": "^26.4.2",
  68. "rimraf": "~3.0.0",
  69. "ts-jest": "^26.3.0",
  70. "typedoc": "~0.21.2",
  71. "typescript": "~4.1.3"
  72. },
  73. "publishConfig": {
  74. "access": "public"
  75. },
  76. "styleModule": "style/index.js"
  77. }