package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "@jupyterlab/testutils",
  3. "version": "3.0.0-rc.15",
  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. "main": "lib/index.js",
  16. "types": "lib/index.d.ts",
  17. "directories": {
  18. "lib": "lib/"
  19. },
  20. "files": [
  21. "lib/*.d.ts",
  22. "lib/*.js.map",
  23. "lib/*.js",
  24. "default.json",
  25. "tsconfigtestbase.json"
  26. ],
  27. "scripts": {
  28. "build": "tsc -b",
  29. "build:test": "tsc --build tsconfig.test.json",
  30. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  31. "prepublishOnly": "npm run build",
  32. "test": "jest",
  33. "test:cov": "jest --collect-coverage",
  34. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  35. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  36. "watch": "tsc -b --watch"
  37. },
  38. "dependencies": {
  39. "@jupyterlab/apputils": "^3.0.0-rc.15",
  40. "@jupyterlab/cells": "^3.0.0-rc.15",
  41. "@jupyterlab/codeeditor": "^3.0.0-rc.15",
  42. "@jupyterlab/codemirror": "^3.0.0-rc.15",
  43. "@jupyterlab/coreutils": "^5.0.0-rc.15",
  44. "@jupyterlab/docregistry": "^3.0.0-rc.15",
  45. "@jupyterlab/nbformat": "^3.0.0-rc.15",
  46. "@jupyterlab/notebook": "^3.0.0-rc.15",
  47. "@jupyterlab/rendermime": "^3.0.0-rc.15",
  48. "@jupyterlab/services": "^6.0.0-rc.15",
  49. "@lumino/algorithm": "^1.3.3",
  50. "@lumino/coreutils": "^1.5.3",
  51. "@lumino/properties": "^1.2.3",
  52. "@lumino/signaling": "^1.4.3",
  53. "child_process": "~1.0.2",
  54. "fs-extra": "^9.0.1",
  55. "identity-obj-proxy": "^3.0.0",
  56. "jest": "^26.4.2",
  57. "jest-junit": "^11.1.0",
  58. "jest-raw-loader": "^1.0.1",
  59. "jest-summary-reporter": "^0.0.2",
  60. "json-to-html": "~0.1.2",
  61. "markdown-loader-jest": "^0.1.1",
  62. "node-fetch": "^2.6.0",
  63. "simulate-event": "~1.4.0",
  64. "ts-jest": "^26.3.0"
  65. },
  66. "devDependencies": {
  67. "@types/jest": "^26.0.10",
  68. "@types/node-fetch": "^2.5.4",
  69. "jest-retries": "^1.0.1",
  70. "lighthouse": "6.3.0",
  71. "typescript": "~4.1.3"
  72. },
  73. "publishConfig": {
  74. "access": "public"
  75. }
  76. }