1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- "name": "@jupyterlab/testutils",
- "version": "3.4.3",
- "description": "JupyterLab - Test Utilities",
- "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",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "default*.json",
- "tsconfigtestbase.json"
- ],
- "scripts": {
- "build": "tsc -b",
- "build:all": "npm run build",
- "build:test": "tsc --build tsconfig.test.json",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "test": "jest",
- "test:cov": "jest --collect-coverage",
- "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
- "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^3.4.3",
- "@jupyterlab/cells": "^3.4.3",
- "@jupyterlab/codeeditor": "^3.4.3",
- "@jupyterlab/codemirror": "^3.4.3",
- "@jupyterlab/coreutils": "^5.4.3",
- "@jupyterlab/docregistry": "^3.4.3",
- "@jupyterlab/nbformat": "^3.4.3",
- "@jupyterlab/notebook": "^3.4.3",
- "@jupyterlab/rendermime": "^3.4.3",
- "@jupyterlab/services": "^6.4.3",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/properties": "^1.8.0",
- "@lumino/signaling": "^1.10.0",
- "child_process": "~1.0.2",
- "deepmerge": "^4.2.2",
- "fs-extra": "^9.0.1",
- "identity-obj-proxy": "^3.0.0",
- "jest": "^26.4.2",
- "jest-junit": "^11.1.0",
- "jest-raw-loader": "^1.0.1",
- "jest-summary-reporter": "^0.0.2",
- "json-to-html": "~0.1.2",
- "markdown-loader-jest": "^0.1.1",
- "node-fetch": "^2.6.0",
- "simulate-event": "~1.4.0",
- "ts-jest": "^26.3.0"
- },
- "devDependencies": {
- "@types/jest": "^26.0.10",
- "@types/node-fetch": "^2.5.4",
- "jest-retries": "^1.0.1",
- "lighthouse": "6.3.0",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|