package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "@jupyterlab/services",
  3. "version": "6.4.3",
  4. "description": "Client APIs for the Jupyter services REST APIs",
  5. "keywords": [
  6. "jupyter",
  7. "notebook",
  8. "services"
  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"
  17. },
  18. "license": "BSD-3-Clause",
  19. "author": "Project Jupyter",
  20. "main": "lib/index.js",
  21. "browser": {
  22. "node-fetch": false,
  23. "ws": "./lib/shim/ws.js"
  24. },
  25. "typings": "lib/index.d.ts",
  26. "files": [
  27. "lib/**/*.js",
  28. "lib/*.js.map",
  29. "lib/**/*.d.ts",
  30. "lib/**/*.js.map",
  31. "lib/*.js",
  32. "lib/*.d.ts",
  33. "dist/*.js",
  34. "dist/**/*.js"
  35. ],
  36. "scripts": {
  37. "build": "tsc -b",
  38. "build:all": "npm run build && webpack",
  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.4.3",
  50. "@jupyterlab/nbformat": "^3.4.3",
  51. "@jupyterlab/observables": "^4.4.3",
  52. "@jupyterlab/settingregistry": "^3.4.3",
  53. "@jupyterlab/statedb": "^3.4.3",
  54. "@lumino/algorithm": "^1.9.0",
  55. "@lumino/coreutils": "^1.11.0",
  56. "@lumino/disposable": "^1.10.0",
  57. "@lumino/polling": "^1.9.0",
  58. "@lumino/signaling": "^1.10.0",
  59. "node-fetch": "^2.6.0",
  60. "ws": "^7.4.6"
  61. },
  62. "devDependencies": {
  63. "@jupyterlab/testutils": "^3.4.3",
  64. "@types/jest": "^26.0.10",
  65. "@types/node-fetch": "^2.5.4",
  66. "@types/text-encoding": "^0.0.35",
  67. "@types/ws": "^7.4.4",
  68. "jest": "^26.4.2",
  69. "rimraf": "~3.0.0",
  70. "text-encoding": "^0.7.0",
  71. "ts-jest": "^26.3.0",
  72. "typedoc": "~0.21.2",
  73. "typescript": "~4.1.3",
  74. "webpack": "^5.41.1",
  75. "webpack-cli": "^4.1.0"
  76. },
  77. "publishConfig": {
  78. "access": "public"
  79. }
  80. }