package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "@jupyterlab/galata",
  3. "version": "4.1.0",
  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. "test": "playwright test",
  40. "test:benchmark": "jlpm run test -c playwright-benchmark.config.js",
  41. "test:debug": "PWDEBUG=1 playwright test",
  42. "test:report": "http-server ./playwright-report -a localhost -o",
  43. "test:update": "playwright test --update-snapshots"
  44. },
  45. "dependencies": {
  46. "@jupyterlab/application": "^3.2.3",
  47. "@jupyterlab/cells": "^3.2.3",
  48. "@jupyterlab/coreutils": "^5.2.3",
  49. "@jupyterlab/docmanager": "^3.2.3",
  50. "@jupyterlab/nbformat": "^3.2.3",
  51. "@jupyterlab/notebook": "^3.2.3",
  52. "@jupyterlab/services": "^6.2.3",
  53. "@jupyterlab/settingregistry": "^3.2.3",
  54. "@lumino/algorithm": "^1.3.3",
  55. "@lumino/coreutils": "^1.5.3",
  56. "@playwright/test": "^1.16.2",
  57. "@stdlib/stats": "^0.0.13",
  58. "canvas": "^2.6.1",
  59. "fs-extra": "^9.0.1",
  60. "http-server": "^13.0.0",
  61. "json5": "^2.1.1",
  62. "node-fetch": "^2.6.0",
  63. "path": "~0.12.7",
  64. "systeminformation": "^5.8.6",
  65. "vega": "^5.20.0",
  66. "vega-lite": "^5.1.0",
  67. "vega-statistics": "^1.7.9"
  68. },
  69. "devDependencies": {
  70. "@types/node-fetch": "^2.5.4",
  71. "css-loader": "^5.0.1",
  72. "file-loader": "~6.0.0",
  73. "raw-loader": "~4.0.0",
  74. "rimraf": "~3.0.0",
  75. "source-map-loader": "~1.0.2",
  76. "style-loader": "~2.0.0",
  77. "svg-url-loader": "~6.0.0",
  78. "svgo-loader": "^2.2.1",
  79. "ts-loader": "^6.2.1",
  80. "typescript": "~4.1.3",
  81. "url-loader": "~4.1.0",
  82. "webpack": "^5.41.1",
  83. "webpack-cli": "^4.1.0"
  84. },
  85. "publishConfig": {
  86. "access": "public"
  87. },
  88. "styleModule": "style/index.js"
  89. }