package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@jupyterlab/services",
  3. "version": "0.43.0",
  4. "description": "Client APIs for the Jupyter services REST APIs",
  5. "main": "lib/index.js",
  6. "typings": "lib/index.d.ts",
  7. "dependencies": {
  8. "@jupyterlab/coreutils": "^0.4.0",
  9. "@phosphor/algorithm": "^1.0.0",
  10. "@phosphor/coreutils": "^1.0.0",
  11. "@phosphor/disposable": "^1.0.0",
  12. "@phosphor/signaling": "^1.0.0",
  13. "@types/minimist": "^1.2.0",
  14. "@types/text-encoding": "0.0.30",
  15. "minimist": "^1.2.0",
  16. "path-posix": "^1.0.0",
  17. "url-parse": "^1.1.8"
  18. },
  19. "devDependencies": {
  20. "@types/expect.js": "^0.3.29",
  21. "@types/mocha": "^2.2.32",
  22. "@types/ws": "0.0.39",
  23. "expect.js": "^0.3.1",
  24. "istanbul": "^0.3.18",
  25. "mocha": "^3.2.0",
  26. "requirejs": "^2.2.0",
  27. "rimraf": "^2.5.2",
  28. "text-encoding": "^0.5.2",
  29. "typedoc": "^0.5.0",
  30. "typescript": "^2.2.1",
  31. "webpack": "^2.2.1",
  32. "ws": "^1.1.1",
  33. "xmlhttprequest": "^1.8.0"
  34. },
  35. "scripts": {
  36. "clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
  37. "build:src": "tsc --project src",
  38. "build:test": "tsc --project test/src",
  39. "build": "npm run build:src",
  40. "example:browser": "cd examples/browser && npm run update && npm run build",
  41. "example:node": "cd examples/node && npm install",
  42. "build:examples": "npm run example:browser && npm run example:node",
  43. "test:coverage": "istanbul cover --dir test/coverage _mocha -- --retries 3 test/build/**/*.spec.js test/build/*.spec.js --jupyter-config-data=./test/config.json",
  44. "test:integration": "cd test && python integration_test.py",
  45. "test:devtool": "devtool node_modules/.bin/_mocha -qc test/build/**/*.spec.js test/build*.spec.js --jupyter-config-data=./test/config.json",
  46. "test:debug": "mocha test/build/**/*.spec.js test/build*.spec.js --jupyter-config-data=./test/config.json --debug-brk",
  47. "test": "mocha --retries 3 test/build/**/*.spec.js test/build*.spec.js --jupyter-config-data=./test/config.json"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": "https://github.com/jupyterlab/jupyterlab"
  52. },
  53. "keywords": [
  54. "jupyter",
  55. "services",
  56. "notebook"
  57. ],
  58. "files": [
  59. "lib/**/*.js",
  60. "lib/**/*.d.ts",
  61. "lib/*.js",
  62. "lib/*.d.ts",
  63. "dist/*.js",
  64. "dist/**/*.js"
  65. ],
  66. "author": "Project Jupyter",
  67. "license": "BSD-3-Clause",
  68. "bugs": {
  69. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  70. },
  71. "homepage": "https://github.com/jupyterlab/jupyterlab"
  72. }