12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "name": "@jupyterlab/vega2-extension",
- "version": "0.14.1",
- "description": "JupyterLab - Vega 2 Mime Renderer Extension",
- "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.map",
- "lib/*.js",
- "style/*.css"
- ],
- "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",
- "clean": "rimraf lib",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w"
- },
- "dependencies": {
- "@jupyterlab/rendermime-interfaces": "^1.0.1",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/widgets": "^1.5.0",
- "d3": "~3.5.17",
- "vega": "~2.6.5",
- "vega-embed": "~2.2.0",
- "vega-lite": "~1.0.16"
- },
- "devDependencies": {
- "@types/node": "~8.0.47",
- "rimraf": "~2.6.2",
- "typescript": "~2.6.2"
- },
- "jupyterlab": {
- "mimeExtension": true
- }
- }
|