1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- "name": "@jupyterlab/rendermime",
- "version": "3.4.3",
- "description": "JupyterLab - RenderMime",
- "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",
- "sideEffects": [
- "style/*.css",
- "style/index.js"
- ],
- "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",
- "style/*.css",
- "style/index.js"
- ],
- "scripts": {
- "build": "tsc -b",
- "build:test": "tsc --build tsconfig.test.json",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src",
- "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.4.3",
- "@jupyterlab/codemirror": "^3.4.3",
- "@jupyterlab/coreutils": "^5.4.3",
- "@jupyterlab/nbformat": "^3.4.3",
- "@jupyterlab/observables": "^4.4.3",
- "@jupyterlab/rendermime-interfaces": "^3.4.3",
- "@jupyterlab/services": "^6.4.3",
- "@jupyterlab/translation": "^3.4.3",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/widgets": "^1.30.0",
- "lodash.escape": "^4.0.1",
- "marked": "^4.0.10"
- },
- "devDependencies": {
- "@jupyterlab/mathjax2": "^3.4.3",
- "@jupyterlab/testutils": "^3.4.3",
- "@types/jest": "^26.0.10",
- "@types/lodash.escape": "^4.0.6",
- "@types/marked": "^4.0.1",
- "jest": "^26.4.2",
- "json2html": "^0.0.8",
- "rimraf": "~3.0.0",
- "ts-jest": "^26.3.0",
- "typedoc": "~0.21.2",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "styleModule": "style/index.js"
- }
|