1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "name": "@jupyterlab/codemirror",
- "version": "2.1.0",
- "description": "JupyterLab - CodeMirror Editor Provider",
- "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",
- "style/*.css"
- ],
- "sideEffects": true,
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "build:test": "tsc --build tsconfig.test.json",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc 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/apputils": "^2.1.0",
- "@jupyterlab/codeeditor": "^2.1.0",
- "@jupyterlab/coreutils": "^4.1.0",
- "@jupyterlab/nbformat": "^2.1.0",
- "@jupyterlab/observables": "^3.1.0",
- "@jupyterlab/statusbar": "^2.1.0",
- "@lumino/algorithm": "^1.2.3",
- "@lumino/commands": "^1.10.1",
- "@lumino/coreutils": "^1.4.2",
- "@lumino/disposable": "^1.3.5",
- "@lumino/polling": "^1.1.1",
- "@lumino/signaling": "^1.3.5",
- "@lumino/widgets": "^1.11.1",
- "codemirror": "~5.53.2",
- "react": "~16.9.0"
- },
- "devDependencies": {
- "@jupyterlab/testutils": "^2.1.0",
- "@types/codemirror": "^0.0.76",
- "@types/jest": "^24.0.23",
- "jest": "^25.2.3",
- "rimraf": "~3.0.0",
- "ts-jest": "^25.2.1",
- "typedoc": "^0.15.4",
- "typescript": "~3.7.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extraStyles": {
- "codemirror": [
- "lib/codemirror.css",
- "addon/dialog/dialog.css",
- "addon/fold/foldgutter.css",
- "theme/material.css",
- "theme/zenburn.css",
- "theme/abcdef.css",
- "theme/base16-light.css",
- "theme/base16-dark.css",
- "theme/dracula.css",
- "theme/hopscotch.css",
- "theme/mbo.css",
- "theme/mdn-like.css",
- "theme/seti.css",
- "theme/solarized.css",
- "theme/the-matrix.css",
- "theme/xq-light.css"
- ]
- }
- }
- }
|