package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "@jupyterlab/apputils",
  3. "version": "3.2.0-beta.0",
  4. "description": "JupyterLab - Application Utilities",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab-extension"
  9. ],
  10. "homepage": "https://github.com/jupyterlab/jupyterlab",
  11. "bugs": {
  12. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/jupyterlab/jupyterlab.git"
  17. },
  18. "license": "BSD-3-Clause",
  19. "author": "Project Jupyter",
  20. "sideEffects": [
  21. "style/*.css",
  22. "style/index.js"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "files": [
  31. "lib/*.d.ts",
  32. "lib/*.js.map",
  33. "lib/*.js",
  34. "style/*.css",
  35. "style/index.js"
  36. ],
  37. "scripts": {
  38. "build": "tsc -b",
  39. "build:test": "tsc --build tsconfig.test.json",
  40. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  41. "docs": "typedoc src",
  42. "test": "jest",
  43. "test:cov": "jest --collect-coverage",
  44. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  45. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  46. "watch": "tsc -b --watch"
  47. },
  48. "dependencies": {
  49. "@jupyterlab/coreutils": "^5.2.0-beta.0",
  50. "@jupyterlab/services": "^6.2.0-beta.0",
  51. "@jupyterlab/settingregistry": "^3.2.0-beta.0",
  52. "@jupyterlab/statedb": "^3.2.0-beta.0",
  53. "@jupyterlab/translation": "^3.2.0-beta.0",
  54. "@jupyterlab/ui-components": "^3.2.0-beta.0",
  55. "@lumino/algorithm": "^1.3.3",
  56. "@lumino/commands": "^1.12.0",
  57. "@lumino/coreutils": "^1.5.3",
  58. "@lumino/disposable": "^1.4.3",
  59. "@lumino/domutils": "^1.2.3",
  60. "@lumino/messaging": "^1.4.3",
  61. "@lumino/polling": "^1.3.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. "@types/react": "^17.0.0",
  67. "react": "^17.0.1",
  68. "react-dom": "^17.0.1",
  69. "sanitize-html": "~2.3.3",
  70. "url": "^0.11.0"
  71. },
  72. "devDependencies": {
  73. "@jupyterlab/testutils": "^3.2.0-beta.0",
  74. "@types/jest": "^26.0.10",
  75. "@types/react-dom": "^17.0.0",
  76. "@types/sanitize-html": "^2.3.1",
  77. "jest": "^26.4.2",
  78. "rimraf": "~3.0.0",
  79. "ts-jest": "^26.3.0",
  80. "typedoc": "~0.21.2",
  81. "typescript": "~4.1.3"
  82. },
  83. "publishConfig": {
  84. "access": "public"
  85. },
  86. "styleModule": "style/index.js"
  87. }