123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- {
- "name": "@jupyterlab/galata",
- "version": "4.3.3",
- "description": "JupyterLab UI Testing Framework",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "sideEffects": [
- "style/*.css",
- "style/index.js"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "files": [
- "lib/**/*.{js,ts,map}",
- "!lib/inpage/index.*",
- "style/index.css",
- "style/index.js"
- ],
- "scripts": {
- "build": "jlpm run clean && jlpm run build:galata && jlpm run build:inpage",
- "build:all": "npm run build",
- "build:galata": "tsc -b",
- "build:inpage": "webpack --mode=production",
- "clean": "rimraf lib tsconfig.tsbuildinfo",
- "start": "jupyter lab --config ./jupyter_server_test_config.py",
- "start:detached": "(jlpm run start&)",
- "start:doc": "mkdir -p /tmp/dummy-server/lab && python -m http.server -d /tmp/dummy-server 8888",
- "test": "playwright test",
- "test:benchmark": "jlpm run test -c playwright-benchmark.config.js",
- "test:benchmark:update": "BENCHMARK_NUMBER_SAMPLES=1 jlpm run test -c playwright-benchmark.config.js --update-snapshots",
- "test:debug": "PWDEBUG=1 playwright test",
- "test:doc": "echo \"No documentation tests\"",
- "test:doc:update": "echo \"No documentation tests\"",
- "test:report": "http-server ./playwright-report -a localhost -o",
- "test:update": "playwright test --update-snapshots && jlpm test:benchmark:update"
- },
- "dependencies": {
- "@jupyterlab/application": "^3.4.3",
- "@jupyterlab/cells": "^3.4.3",
- "@jupyterlab/coreutils": "^5.4.3",
- "@jupyterlab/docmanager": "^3.4.3",
- "@jupyterlab/nbformat": "^3.4.3",
- "@jupyterlab/notebook": "^3.4.3",
- "@jupyterlab/services": "^6.4.3",
- "@jupyterlab/settingregistry": "^3.4.3",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@playwright/test": "^1.16.2",
- "@stdlib/stats": "^0.0.13",
- "canvas": "^2.6.1",
- "fs-extra": "^9.0.1",
- "http-server": "^13.0.0",
- "json5": "^2.1.1",
- "node-fetch": "^2.6.0",
- "path": "~0.12.7",
- "systeminformation": "^5.8.6",
- "vega": "^5.20.0",
- "vega-lite": "^5.1.0",
- "vega-statistics": "^1.7.9"
- },
- "devDependencies": {
- "@types/node-fetch": "^2.5.4",
- "css-loader": "^5.0.1",
- "file-loader": "~6.0.0",
- "raw-loader": "~4.0.0",
- "rimraf": "~3.0.0",
- "source-map-loader": "~1.0.2",
- "style-loader": "~2.0.0",
- "svg-url-loader": "~6.0.0",
- "svgo-loader": "^2.2.1",
- "ts-loader": "^6.2.1",
- "typescript": "~4.1.3",
- "url-loader": "~4.1.0",
- "webpack": "^5.41.1",
- "webpack-cli": "^4.1.0"
- },
- "publishConfig": {
- "access": "public"
- },
- "styleModule": "style/index.js"
- }
|