package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@jupyterlab/testutils",
  3. "version": "0.1.0",
  4. "description": "JupyterLab - Test Utilities",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "license": "BSD-3-Clause",
  10. "author": "Project Jupyter",
  11. "files": [
  12. "lib/*.d.ts",
  13. "lib/*.js.map",
  14. "lib/*.js"
  15. ],
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "directories": {
  19. "lib": "lib/"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/jupyterlab/jupyterlab.git"
  24. },
  25. "scripts": {
  26. "build": "tsc",
  27. "clean": "rimraf lib",
  28. "prepublishOnly": "npm run build",
  29. "watch": "tsc -w --listEmittedFiles"
  30. },
  31. "dependencies": {
  32. "@jupyterlab/apputils": "^0.17.2",
  33. "@jupyterlab/coreutils": "^2.0.2",
  34. "@jupyterlab/docregistry": "^0.17.2",
  35. "@jupyterlab/notebook": "^0.17.2",
  36. "@jupyterlab/rendermime": "^0.17.3",
  37. "@jupyterlab/services": "^3.0.3",
  38. "@phosphor/coreutils": "^1.3.0",
  39. "@phosphor/signaling": "^1.2.2",
  40. "json-to-html": "~0.1.2",
  41. "simulate-event": "~1.4.0"
  42. },
  43. "devDependencies": {
  44. "typescript": "~2.9.2"
  45. }
  46. }