package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@jupyterlab/observables",
  3. "version": "4.4.3",
  4. "description": "Data structures which may be observed for changes.",
  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. "directories": {
  21. "lib": "lib/"
  22. },
  23. "files": [
  24. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  25. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  26. ],
  27. "scripts": {
  28. "build": "tsc -b",
  29. "build:test": "tsc --build tsconfig.test.json",
  30. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  31. "docs": "typedoc src",
  32. "test": "jest",
  33. "test:cov": "jest --collect-coverage",
  34. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  35. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@lumino/algorithm": "^1.9.0",
  40. "@lumino/coreutils": "^1.11.0",
  41. "@lumino/disposable": "^1.10.0",
  42. "@lumino/messaging": "^1.10.0",
  43. "@lumino/signaling": "^1.10.0"
  44. },
  45. "devDependencies": {
  46. "@jupyterlab/testutils": "^3.4.3",
  47. "@types/jest": "^26.0.10",
  48. "jest": "^26.4.2",
  49. "rimraf": "~3.0.0",
  50. "ts-jest": "^26.3.0",
  51. "typedoc": "~0.21.2",
  52. "typescript": "~4.1.3"
  53. },
  54. "publishConfig": {
  55. "access": "public"
  56. }
  57. }