package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@jupyterlab/services",
  3. "version": "1.0.1",
  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 --TestApp.coverage==True",
  40. "test:debug": "python test/run_test.py --debug",
  41. "test:devtool": "python test/run_test.py --TestApp.devtool==True",
  42. "watch": "tsc -w",
  43. "watch:all": "npm-run-all -p watch watch:test",
  44. "watch:test": "tsc -w --project test"
  45. },
  46. "dependencies": {
  47. "@jupyterlab/coreutils": "^1.0.1",
  48. "@jupyterlab/observables": "^1.0.1",
  49. "@phosphor/algorithm": "^1.1.2",
  50. "@phosphor/coreutils": "^1.3.0",
  51. "@phosphor/disposable": "^1.1.2",
  52. "@phosphor/signaling": "^1.2.2",
  53. "node-fetch": "~1.7.3",
  54. "ws": "~1.1.4"
  55. },
  56. "devDependencies": {
  57. "@types/expect.js": "~0.3.29",
  58. "@types/mocha": "~2.2.44",
  59. "@types/node-fetch": "~1.6.7",
  60. "@types/text-encoding": "~0.0.30",
  61. "@types/ws": "~0.0.39",
  62. "expect.js": "~0.3.1",
  63. "istanbul": "~0.3.22",
  64. "mocha": "~3.5.3",
  65. "npm-run-all": "~4.1.1",
  66. "rimraf": "~2.6.2",
  67. "text-encoding": "~0.5.5",
  68. "typescript": "~2.6.2",
  69. "webpack": "~2.7.0"
  70. }
  71. }