package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@jupyterlab/services",
  3. "version": "3.1.4",
  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. "license": "BSD-3-Clause",
  15. "author": "Project Jupyter",
  16. "files": [
  17. "lib/**/*.js",
  18. "lib/*.js.map",
  19. "lib/**/*.d.ts",
  20. "lib/**/*.js.map",
  21. "lib/*.js",
  22. "lib/*.d.ts",
  23. "dist/*.js",
  24. "dist/**/*.js"
  25. ],
  26. "main": "lib/index.js",
  27. "typings": "lib/index.d.ts",
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/jupyterlab/jupyterlab"
  31. },
  32. "scripts": {
  33. "build": "jlpm run build:src",
  34. "build:src": "tsc ",
  35. "build:test": "tsc --project test",
  36. "clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
  37. "prepublishOnly": "jlpm run build:src && webpack",
  38. "test": "python test/run-test.py",
  39. "test:coverage": "python test/run-test.py --coverage True",
  40. "watch": "tsc -w --listEmittedFiles",
  41. "watch:all": "npm-run-all -p watch watch:test",
  42. "watch:test": "python test/run-test.py --debug",
  43. "watch:test:all": "python test/run-test.py --debug --watchAll"
  44. },
  45. "dependencies": {
  46. "@jupyterlab/coreutils": "^2.1.4",
  47. "@jupyterlab/observables": "^2.0.7",
  48. "@phosphor/algorithm": "^1.1.2",
  49. "@phosphor/coreutils": "^1.3.0",
  50. "@phosphor/disposable": "^1.1.2",
  51. "@phosphor/signaling": "^1.2.2"
  52. },
  53. "devDependencies": {
  54. "@types/chai": "~4.0.10",
  55. "@types/jest": "^23.3.1",
  56. "@types/text-encoding": "0.0.33",
  57. "@types/ws": "^6.0.0",
  58. "chai": "~4.1.2",
  59. "jest": "^23.5.0",
  60. "npm-run-all": "~4.1.1",
  61. "rimraf": "~2.6.2",
  62. "text-encoding": "~0.5.5",
  63. "ts-jest": "^23.1.4",
  64. "typescript": "~2.9.2",
  65. "ws": "~6.0.0"
  66. }
  67. }