package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@jupyterlab/services",
  3. "version": "0.51.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. "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 --project src",
  35. "build:test": "tsc --project test/src",
  36. "clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
  37. "prepublishOnly": "jlpm run build:src && webpack",
  38. "test": "mocha --retries 3 test/build/**/*.spec.js test/build/*.spec.js --jupyter-config-data=./test/config.json",
  39. "test:coverage": "istanbul cover --dir test/coverage _mocha -- --retries 3 test/build/**/*.spec.js test/build/*.spec.js --jupyter-config-data=./test/config.json",
  40. "test:debug": "mocha test/build/**/*.spec.js test/build/*.spec.js --jupyter-config-data=./test/config.json --debug-brk",
  41. "test:devtool": "devtool node_modules/.bin/_mocha -qc test/build/**/*.spec.js test/build/*.spec.js --jupyter-config-data=./test/config.json --timeout=50000",
  42. "test:integration": "cd test && python integration_test.py"
  43. },
  44. "dependencies": {
  45. "@jupyterlab/coreutils": "^0.12.0",
  46. "@phosphor/algorithm": "^1.1.2",
  47. "@phosphor/coreutils": "^1.3.0",
  48. "@phosphor/disposable": "^1.1.2",
  49. "@phosphor/signaling": "^1.2.2"
  50. },
  51. "devDependencies": {
  52. "@types/expect.js": "~0.3.29",
  53. "@types/mocha": "~2.2.44",
  54. "@types/text-encoding": "~0.0.30",
  55. "@types/ws": "~0.0.39",
  56. "expect.js": "~0.3.1",
  57. "istanbul": "~0.3.22",
  58. "mocha": "~3.5.3",
  59. "requirejs": "~2.3.5",
  60. "rimraf": "~2.6.2",
  61. "text-encoding": "~0.5.5",
  62. "typescript": "~2.4.2",
  63. "webpack": "~2.7.0",
  64. "ws": "~1.1.4",
  65. "xmlhttprequest": "~1.8.0"
  66. }
  67. }