package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@jupyterlab/testutils",
  3. "version": "2.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. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "default.json",
  20. "tsconfigtestbase.json"
  21. ],
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "directories": {
  25. "lib": "lib/"
  26. },
  27. "scripts": {
  28. "build": "tsc -b",
  29. "clean": "rimraf lib",
  30. "prepublishOnly": "npm run build",
  31. "watch": "tsc --watch"
  32. },
  33. "dependencies": {
  34. "@jupyterlab/apputils": "^2.1.0",
  35. "@jupyterlab/cells": "^2.1.0",
  36. "@jupyterlab/codeeditor": "^2.1.0",
  37. "@jupyterlab/codemirror": "^2.1.0",
  38. "@jupyterlab/coreutils": "^4.1.0",
  39. "@jupyterlab/docregistry": "^2.1.0",
  40. "@jupyterlab/nbformat": "^2.1.0",
  41. "@jupyterlab/notebook": "^2.1.0",
  42. "@jupyterlab/rendermime": "^2.1.0",
  43. "@jupyterlab/services": "^5.1.0",
  44. "@lumino/algorithm": "^1.2.3",
  45. "@lumino/coreutils": "^1.4.2",
  46. "@lumino/properties": "^1.1.6",
  47. "@lumino/signaling": "^1.3.5",
  48. "fs-extra": "^8.1.0",
  49. "identity-obj-proxy": "^3.0.0",
  50. "jest": "^25.2.3",
  51. "jest-raw-loader": "^1.0.1",
  52. "json-to-html": "~0.1.2",
  53. "node-fetch": "^2.6.0",
  54. "path": "~0.12.7",
  55. "simulate-event": "~1.4.0",
  56. "ts-jest": "^25.2.1"
  57. },
  58. "devDependencies": {
  59. "@types/jest": "^24.0.23",
  60. "@types/node-fetch": "^2.5.4",
  61. "lighthouse": "5.6.0",
  62. "typescript": "~3.7.3"
  63. },
  64. "publishConfig": {
  65. "access": "public"
  66. }
  67. }