UNPKG

@krassowski/jupyterlab_go_to_definition

Version:

Jump to definition of a variable or function in JupyterLab

80 lines (79 loc) 2.51 kB
{ "name": "@krassowski/jupyterlab_go_to_definition", "version": "1.0.0", "description": "Jump to definition of a variable or function in JupyterLab", "keywords": [ "jupyter", "jupyterlab", "jupyterlab-extension" ], "homepage": "https://github.com/krassowski/jupyterlab-go-to-definition", "bugs": { "url": "https://github.com/krassowski/jupyterlab-go-to-definition/issues" }, "license": "BSD-3-Clause", "author": "Michał Krassowski", "files": [ "{lib,style,schema,src}/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf,css,json,ts,tsx}" ], "main": "lib/index.js", "types": "lib/index.d.ts", "repository": { "type": "git", "url": "https://github.com/krassowski/jupyterlab-go-to-definition.git" }, "scripts": { "build": "tsc -b", "bundle": "npm pack .", "clean": "rimraf lib", "lab:link": "jupyter labextension link . --no-build", "test": "jlpm jest --coverage --coverageReporters=cobertura --coverageReporters=html --coverageReporters=text-summary" }, "peerDependencies": { "@jupyterlab/application": "~2.0.0", "@jupyterlab/apputils": "~2.0.0", "@jupyterlab/codeeditor": "~2.0.0", "@jupyterlab/codemirror": "~2.0.0", "@jupyterlab/coreutils": "~4.0.0", "@jupyterlab/docmanager": "~2.0.0", "@jupyterlab/docregistry": "~2.0.0", "@jupyterlab/fileeditor": "~2.0.0", "@jupyterlab/notebook": "~2.0.0", "@jupyterlab/observables": "~3.0.0", "@jupyterlab/services": "~5.0.0", "@lumino/algorithm": "*", "codemirror": "*", "react": "*" }, "devDependencies": { "@jupyterlab/application": "~2.0.0", "@jupyterlab/apputils": "~2.0.0", "@jupyterlab/codeeditor": "~2.0.0", "@jupyterlab/codemirror": "~2.0.0", "@jupyterlab/coreutils": "~4.0.0", "@jupyterlab/docmanager": "~2.0.0", "@jupyterlab/docregistry": "~2.0.0", "@jupyterlab/fileeditor": "~2.0.0", "@jupyterlab/notebook": "~2.0.0", "@jupyterlab/observables": "~3.0.0", "@jupyterlab/services": "~5.0.0", "@lumino/algorithm": "*", "codemirror": "*", "react": "*", "@jupyterlab/testutils": "~2.0.0", "@types/codemirror": "^0.0.74", "@types/chai": "^4.1.7", "@types/jest": "^23.3.11", "chai": "^4.2.0", "jest": "^24.7.1", "jest-junit": "^8.0.0", "rimraf": "^2.6.1", "ts-jest": "^24.0.2", "typescript": "~3.7.2", "@babel/preset-env": "^7.4.3" }, "jupyterlab": { "extension": true, "schemaDir": "schema" } }