1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- "name": "@jupyterlab/testutils",
- "version": "3.0.0-alpha.4",
- "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",
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "default.json",
- "tsconfigtestbase.json"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "build:test": "tsc --build tsconfig.test.json",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "prepublishOnly": "npm run build",
- "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.0.0-alpha.4",
- "@jupyterlab/cells": "^3.0.0-alpha.4",
- "@jupyterlab/codeeditor": "^3.0.0-alpha.4",
- "@jupyterlab/codemirror": "^3.0.0-alpha.4",
- "@jupyterlab/coreutils": "^5.0.0-alpha.4",
- "@jupyterlab/docregistry": "^3.0.0-alpha.4",
- "@jupyterlab/nbformat": "^3.0.0-alpha.4",
- "@jupyterlab/notebook": "^3.0.0-alpha.4",
- "@jupyterlab/rendermime": "^3.0.0-alpha.4",
- "@jupyterlab/services": "^6.0.0-alpha.4",
- "@lumino/algorithm": "^1.2.3",
- "@lumino/coreutils": "^1.4.3",
- "@lumino/properties": "^1.1.6",
- "@lumino/signaling": "^1.3.5",
- "child_process": "~1.0.2",
- "fs-extra": "^8.1.0",
- "identity-obj-proxy": "^3.0.0",
- "jest": "^25.2.3",
- "jest-junit": "^10.0.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",
- "path": "~0.12.7",
- "simulate-event": "~1.4.0",
- "ts-jest": "^25.2.1"
- },
- "devDependencies": {
- "@types/jest": "^24.0.23",
- "@types/node-fetch": "^2.5.4",
- "jest-retries": "^1.0.1",
- "lighthouse": "5.6.0",
- "typescript": "~3.9.2"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|