1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "@jupyterlab/json-extension",
- "version": "1.0.0-alpha.3",
- "description": "JupyterLab - JSON Renderer",
- "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",
- "style/*"
- ],
- "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 -b",
- "clean": "rimraf lib",
- "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
- "prepublishOnly": "npm run build",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/rendermime-interfaces": "^1.3.0-alpha.3",
- "@jupyterlab/ui-components": "^1.0.0-alpha.3",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/messaging": "^1.2.2",
- "@phosphor/widgets": "^1.6.0",
- "react": "~16.4.2",
- "react-dom": "~16.4.2",
- "react-highlighter": "^0.4.0",
- "react-json-tree": "^0.11.0"
- },
- "devDependencies": {
- "@types/react": "~16.4.13",
- "@types/react-dom": "~16.0.7",
- "@types/react-highlighter": "^0.3.1",
- "@types/react-json-tree": "^0.6.3",
- "rimraf": "~2.6.2",
- "typedoc": "^0.14.2",
- "typescript": "~3.3.1"
- },
- "publishConfig": {
- "access": "public"
- },
- "gitHead": "31f68f6d1717b58c344a5fb4f4baf3b123b7c75c",
- "jupyterlab": {
- "mimeExtension": true
- }
- }
|