package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "@jupyterlab/services",
  3. "version": "5.1.0",
  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. "files": [
  21. "lib/**/*.js",
  22. "lib/*.js.map",
  23. "lib/**/*.d.ts",
  24. "lib/**/*.js.map",
  25. "lib/*.js",
  26. "lib/*.d.ts",
  27. "dist/*.js",
  28. "dist/**/*.js"
  29. ],
  30. "main": "lib/index.js",
  31. "browser": {
  32. "node-fetch": false,
  33. "ws": "./lib/shim/ws.js"
  34. },
  35. "typings": "lib/index.d.ts",
  36. "scripts": {
  37. "build": "tsc -b",
  38. "build:test": "tsc --build tsconfig.test.json",
  39. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  40. "docs": "typedoc src",
  41. "prepublishOnly": "jlpm run build && webpack",
  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": "^4.1.0",
  50. "@jupyterlab/nbformat": "^2.1.0",
  51. "@jupyterlab/observables": "^3.1.0",
  52. "@jupyterlab/settingregistry": "^2.1.0",
  53. "@jupyterlab/statedb": "^2.1.0",
  54. "@lumino/algorithm": "^1.2.3",
  55. "@lumino/coreutils": "^1.4.2",
  56. "@lumino/disposable": "^1.3.5",
  57. "@lumino/polling": "^1.1.1",
  58. "@lumino/signaling": "^1.3.5",
  59. "node-fetch": "^2.6.0",
  60. "ws": "^7.2.0"
  61. },
  62. "devDependencies": {
  63. "@jupyterlab/testutils": "^2.1.0",
  64. "@types/jest": "^24.0.23",
  65. "@types/node": "^12.12.17",
  66. "@types/text-encoding": "^0.0.35",
  67. "@types/ws": "^7.2.4",
  68. "jest": "^25.2.3",
  69. "rimraf": "~3.0.0",
  70. "text-encoding": "^0.7.0",
  71. "ts-jest": "^25.2.1",
  72. "typedoc": "^0.15.4",
  73. "typescript": "~3.7.3",
  74. "webpack": "^4.41.2",
  75. "webpack-cli": "^3.3.10"
  76. },
  77. "publishConfig": {
  78. "access": "public"
  79. }
  80. }