package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@jupyterlab/testutils",
  3. "version": "3.4.3",
  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:all": "npm run build",
  30. "build:test": "tsc --build tsconfig.test.json",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  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.4.3",
  40. "@jupyterlab/cells": "^3.4.3",
  41. "@jupyterlab/codeeditor": "^3.4.3",
  42. "@jupyterlab/codemirror": "^3.4.3",
  43. "@jupyterlab/coreutils": "^5.4.3",
  44. "@jupyterlab/docregistry": "^3.4.3",
  45. "@jupyterlab/nbformat": "^3.4.3",
  46. "@jupyterlab/notebook": "^3.4.3",
  47. "@jupyterlab/rendermime": "^3.4.3",
  48. "@jupyterlab/services": "^6.4.3",
  49. "@lumino/algorithm": "^1.9.0",
  50. "@lumino/coreutils": "^1.11.0",
  51. "@lumino/properties": "^1.8.0",
  52. "@lumino/signaling": "^1.10.0",
  53. "child_process": "~1.0.2",
  54. "deepmerge": "^4.2.2",
  55. "fs-extra": "^9.0.1",
  56. "identity-obj-proxy": "^3.0.0",
  57. "jest": "^26.4.2",
  58. "jest-junit": "^11.1.0",
  59. "jest-raw-loader": "^1.0.1",
  60. "jest-summary-reporter": "^0.0.2",
  61. "json-to-html": "~0.1.2",
  62. "markdown-loader-jest": "^0.1.1",
  63. "node-fetch": "^2.6.0",
  64. "simulate-event": "~1.4.0",
  65. "ts-jest": "^26.3.0"
  66. },
  67. "devDependencies": {
  68. "@types/jest": "^26.0.10",
  69. "@types/node-fetch": "^2.5.4",
  70. "jest-retries": "^1.0.1",
  71. "lighthouse": "6.3.0",
  72. "typescript": "~4.1.3"
  73. },
  74. "publishConfig": {
  75. "access": "public"
  76. }
  77. }