{ "name": "jupyter-js-plugins", "version": "0.2.3", "description": "Plugins for JupyterLab", "main": "lib/index.js", "typings": "lib/index.d.ts", "dependencies": { "codemirror": "^5.10.0", "jupyter-js-cells": "^0.2.5", "jupyter-js-filebrowser": "^0.4.9", "jupyter-js-notebook": "^0.3.7", "jupyter-js-services": "^0.4.1", "jupyter-js-terminal": "^0.1.12", "jupyter-js-utils": "^0.2.7", "jupyter-js-widgets": "^0.0.2", "phosphide": "^0.3.0", "phosphor-codemirror": "^0.0.1", "phosphor-command": "^0.6.0", "phosphor-di": "^0.9.0", "phosphor-properties": "^2.0.0", "phosphor-tabs": "^1.0.0-rc.2" }, "devDependencies": { "css-loader": "^0.23.1", "expect.js": "^0.3.1", "fs-extra": "^0.26.4", "istanbul-instrumenter-loader": "^0.1.3", "json-loader": "^0.5.4", "karma": "^0.13.19", "karma-chrome-launcher": "^0.2.2", "karma-coverage": "^0.5.3", "karma-firefox-launcher": "^0.1.7", "karma-ie-launcher": "^0.2.0", "karma-mocha": "^0.2.1", "karma-mocha-reporter": "^1.1.5", "mocha": "^2.3.4", "rimraf": "^2.5.0", "style-loader": "^0.13.0", "typedoc": "^0.3.12", "typescript": "^1.7.5", "webpack": "^1.12.11" }, "scripts": { "clean": "rimraf docs && rimraf lib && rimraf test/build", "clean:example": "rimraf example/build", "build:example": "webpack --config example/webpack.conf.js", "build:src": "tsc --project src && node scripts/copycss.js", "build:test": "tsc --project test/src && webpack --config test/webpack.conf.js", "build": "npm run build:src && npm run build:test", "docs": "typedoc --options scripts/tdoptions.json", "postinstall": "npm dedupe", "prepublish": "npm run build", "test:chrome": "karma start --browsers=Chrome test/karma.conf.js", "test:coverage": "webpack --config test/webpack-cov.conf.js && karma start test/karma-cov.conf.js", "test:firefox": "karma start --browsers=Firefox test/karma.conf.js", "test:ie": "karma start --browsers=IE test/karma.conf.js", "test:debug": "karma start --browsers=Chrome --singleRun=false --debug=true test/karma.conf.js", "test": "npm run test:firefox" }, "repository": { "type": "git", "url": "https://github.com/jupyter/jupyter-js-plugins" }, "keywords": [ "jupyter", "jupyterlab", "plugins", "lab" ], "files": [ "lib/*.css", "lib/*.d.ts", "lib/*.js", "lib/**/*.css", "lib/**/*.d.ts", "lib/**/*.js" ], "author": "Project Jupyter", "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/jupyter/jupyter-js-plugins/issues" }, "homepage": "https://github.com/jupyter/jupyter-js-plugins" }