123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- {
- "name": "@jupyterlab/debugger-extension",
- "version": "3.0.0-rc.10",
- "description": "JupyterLab - Debugger Extension",
- "keywords": [
- "jupyter",
- "jupyterlab",
- "jupyterlab-extension"
- ],
- "homepage": "https://github.com/jupyterlab/debugger",
- "bugs": {
- "url": "https://github.com/jupyterlab/debugger/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/debugger.git"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "sideEffects": [
- "style/**/*.css"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "files": [
- "lib/**/*.d.ts",
- "lib/**/*.js.map",
- "lib/**/*.js",
- "schema/*.json",
- "style/**/*.css",
- "style/**/*.svg"
- ],
- "scripts": {
- "build": "tsc -b",
- "build:test": "tsc --build tsconfig.test.json",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo && rimraf tsconfig.test.tsbuildinfo && rimraf tests/build",
- "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
- "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/application": "^3.0.0-rc.10",
- "@jupyterlab/apputils": "^3.0.0-rc.10",
- "@jupyterlab/codeeditor": "^3.0.0-rc.10",
- "@jupyterlab/console": "^3.0.0-rc.10",
- "@jupyterlab/coreutils": "^5.0.0-rc.10",
- "@jupyterlab/debugger": "^3.0.0-rc.10",
- "@jupyterlab/docregistry": "^3.0.0-rc.10",
- "@jupyterlab/fileeditor": "^3.0.0-rc.10",
- "@jupyterlab/notebook": "^3.0.0-rc.10",
- "@jupyterlab/services": "^6.0.0-rc.10",
- "@jupyterlab/settingregistry": "^3.0.0-rc.10",
- "@jupyterlab/translation": "^3.0.0-rc.10"
- },
- "devDependencies": {
- "@babel/core": "^7.10.2",
- "@babel/preset-env": "^7.10.2",
- "@jupyterlab/testutils": "^3.0.0-rc.10",
- "@types/codemirror": "^0.0.97",
- "@types/jest": "^26.0.10",
- "@types/react-dom": "^17.0.0",
- "jest": "^26.4.2",
- "jest-junit": "^11.1.0",
- "jest-raw-loader": "^1.0.1",
- "jest-summary-reporter": "^0.0.2",
- "rimraf": "~3.0.0",
- "shell-quote": "^1.7.2",
- "ts-jest": "^26.3.0",
- "typedoc": "0.17.0-3",
- "typescript": "~4.0.2"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": true,
- "schemaDir": "schema"
- }
- }
|