package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@jupyterlab/testutils",
  3. "version": "3.0.0-alpha.4",
  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. "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-alpha.4",
  40. "@jupyterlab/cells": "^3.0.0-alpha.4",
  41. "@jupyterlab/codeeditor": "^3.0.0-alpha.4",
  42. "@jupyterlab/codemirror": "^3.0.0-alpha.4",
  43. "@jupyterlab/coreutils": "^5.0.0-alpha.4",
  44. "@jupyterlab/docregistry": "^3.0.0-alpha.4",
  45. "@jupyterlab/nbformat": "^3.0.0-alpha.4",
  46. "@jupyterlab/notebook": "^3.0.0-alpha.4",
  47. "@jupyterlab/rendermime": "^3.0.0-alpha.4",
  48. "@jupyterlab/services": "^6.0.0-alpha.4",
  49. "@lumino/algorithm": "^1.2.3",
  50. "@lumino/coreutils": "^1.4.3",
  51. "@lumino/properties": "^1.1.6",
  52. "@lumino/signaling": "^1.3.5",
  53. "child_process": "~1.0.2",
  54. "fs-extra": "^8.1.0",
  55. "identity-obj-proxy": "^3.0.0",
  56. "jest": "^25.2.3",
  57. "jest-junit": "^10.0.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. "path": "~0.12.7",
  64. "simulate-event": "~1.4.0",
  65. "ts-jest": "^25.2.1"
  66. },
  67. "devDependencies": {
  68. "@types/jest": "^24.0.23",
  69. "@types/node-fetch": "^2.5.4",
  70. "jest-retries": "^1.0.1",
  71. "lighthouse": "5.6.0",
  72. "typescript": "~3.9.2"
  73. },
  74. "publishConfig": {
  75. "access": "public"
  76. }
  77. }