package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "@jupyterlab/galata",
  3. "version": "4.3.3",
  4. "description": "JupyterLab UI Testing Framework",
  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. "sideEffects": [
  16. "style/*.css",
  17. "style/index.js"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "directories": {
  23. "lib": "lib/"
  24. },
  25. "files": [
  26. "lib/**/*.{js,ts,map}",
  27. "!lib/inpage/index.*",
  28. "style/index.css",
  29. "style/index.js"
  30. ],
  31. "scripts": {
  32. "build": "jlpm run clean && jlpm run build:galata && jlpm run build:inpage",
  33. "build:all": "npm run build",
  34. "build:galata": "tsc -b",
  35. "build:inpage": "webpack --mode=production",
  36. "clean": "rimraf lib tsconfig.tsbuildinfo",
  37. "start": "jupyter lab --config ./jupyter_server_test_config.py",
  38. "start:detached": "(jlpm run start&)",
  39. "start:doc": "mkdir -p /tmp/dummy-server/lab && python -m http.server -d /tmp/dummy-server 8888",
  40. "test": "playwright test",
  41. "test:benchmark": "jlpm run test -c playwright-benchmark.config.js",
  42. "test:benchmark:update": "BENCHMARK_NUMBER_SAMPLES=1 jlpm run test -c playwright-benchmark.config.js --update-snapshots",
  43. "test:debug": "PWDEBUG=1 playwright test",
  44. "test:doc": "echo \"No documentation tests\"",
  45. "test:doc:update": "echo \"No documentation tests\"",
  46. "test:report": "http-server ./playwright-report -a localhost -o",
  47. "test:update": "playwright test --update-snapshots && jlpm test:benchmark:update"
  48. },
  49. "dependencies": {
  50. "@jupyterlab/application": "^3.4.3",
  51. "@jupyterlab/cells": "^3.4.3",
  52. "@jupyterlab/coreutils": "^5.4.3",
  53. "@jupyterlab/docmanager": "^3.4.3",
  54. "@jupyterlab/nbformat": "^3.4.3",
  55. "@jupyterlab/notebook": "^3.4.3",
  56. "@jupyterlab/services": "^6.4.3",
  57. "@jupyterlab/settingregistry": "^3.4.3",
  58. "@lumino/algorithm": "^1.9.0",
  59. "@lumino/coreutils": "^1.11.0",
  60. "@playwright/test": "^1.16.2",
  61. "@stdlib/stats": "^0.0.13",
  62. "canvas": "^2.6.1",
  63. "fs-extra": "^9.0.1",
  64. "http-server": "^13.0.0",
  65. "json5": "^2.1.1",
  66. "node-fetch": "^2.6.0",
  67. "path": "~0.12.7",
  68. "systeminformation": "^5.8.6",
  69. "vega": "^5.20.0",
  70. "vega-lite": "^5.1.0",
  71. "vega-statistics": "^1.7.9"
  72. },
  73. "devDependencies": {
  74. "@types/node-fetch": "^2.5.4",
  75. "css-loader": "^5.0.1",
  76. "file-loader": "~6.0.0",
  77. "raw-loader": "~4.0.0",
  78. "rimraf": "~3.0.0",
  79. "source-map-loader": "~1.0.2",
  80. "style-loader": "~2.0.0",
  81. "svg-url-loader": "~6.0.0",
  82. "svgo-loader": "^2.2.1",
  83. "ts-loader": "^6.2.1",
  84. "typescript": "~4.1.3",
  85. "url-loader": "~4.1.0",
  86. "webpack": "^5.41.1",
  87. "webpack-cli": "^4.1.0"
  88. },
  89. "publishConfig": {
  90. "access": "public"
  91. },
  92. "styleModule": "style/index.js"
  93. }