12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "@jupyterlab/testutils",
- "version": "0.1.0",
- "description": "JupyterLab - Test Utilities",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "scripts": {
- "build": "tsc",
- "clean": "rimraf lib",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w --listEmittedFiles"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^0.17.2",
- "@jupyterlab/coreutils": "^2.0.2",
- "@jupyterlab/docregistry": "^0.17.2",
- "@jupyterlab/notebook": "^0.17.2",
- "@jupyterlab/rendermime": "^0.17.3",
- "@jupyterlab/services": "^3.0.3",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/signaling": "^1.2.2",
- "json-to-html": "~0.1.2",
- "simulate-event": "~1.4.0"
- },
- "devDependencies": {
- "typescript": "~2.9.2"
- }
- }
|