package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@jupyterlab/docmanager",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Document Manager",
  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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "style/**/*.css"
  20. ],
  21. "sideEffects": [
  22. "style/**/*.css"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "scripts": {
  31. "build": "tsc -b",
  32. "build:test": "tsc --build tsconfig.test.json",
  33. "clean": "rimraf lib",
  34. "docs": "typedoc src",
  35. "prepublishOnly": "npm run build",
  36. "test": "jest",
  37. "test:cov": "jest --collect-coverage",
  38. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  39. "watch": "npm run test -- --watch"
  40. },
  41. "dependencies": {
  42. "@jupyterlab/apputils": "^2.1.0",
  43. "@jupyterlab/coreutils": "^4.1.0",
  44. "@jupyterlab/docregistry": "^2.1.0",
  45. "@jupyterlab/services": "^5.1.0",
  46. "@jupyterlab/statusbar": "^2.1.0",
  47. "@lumino/algorithm": "^1.2.3",
  48. "@lumino/coreutils": "^1.4.2",
  49. "@lumino/disposable": "^1.3.5",
  50. "@lumino/messaging": "^1.3.3",
  51. "@lumino/properties": "^1.1.6",
  52. "@lumino/signaling": "^1.3.5",
  53. "@lumino/widgets": "^1.11.1",
  54. "react": "~16.9.0"
  55. },
  56. "devDependencies": {
  57. "@jupyterlab/testutils": "^2.1.0",
  58. "@types/jest": "^24.0.23",
  59. "jest": "^25.2.3",
  60. "rimraf": "~3.0.0",
  61. "ts-jest": "^25.2.1",
  62. "typedoc": "^0.15.4",
  63. "typescript": "~3.7.3"
  64. },
  65. "publishConfig": {
  66. "access": "public"
  67. }
  68. }