{
  "name": "jupyter-js-plugins",
  "version": "0.2.0",
  "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.1",
    "jupyter-js-notebook": "^0.3.0",
    "jupyter-js-services": "^0.3.3",
    "jupyter-js-terminal": "^0.1.12",
    "jupyter-js-utils": "^0.2.6",
    "phosphide": "^0.1.0",
    "phosphor-codemirror": "^0.0.1",
    "phosphor-command": "^0.5.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.3",
    "istanbul-instrumenter-loader": "^0.1.3",
    "json-loader": "^0.5.4",
    "karma": "^0.13.9",
    "karma-chrome-launcher": "^0.2.0",
    "karma-coverage": "^0.5.3",
    "karma-firefox-launcher": "^0.1.6",
    "karma-ie-launcher": "^0.2.0",
    "karma-mocha": "^0.2.0",
    "karma-mocha-reporter": "^1.1.1",
    "mocha": "^2.2.5",
    "rimraf": "^2.4.2",
    "style-loader": "^0.13.0",
    "typedoc": "^0.3.12",
    "typescript": "^1.7.5",
    "webpack": "^1.12.9"
  },
  "scripts": {
    "clean": "rimraf docs && rimraf lib && rimraf test/build",
    "clean:example": "rimraf example/build",
    "build:example": "tsc --project example/src && 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"
}