package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "jupyter-js-plugins",
  3. "version": "0.2.3",
  4. "description": "Plugins for JupyterLab",
  5. "main": "lib/index.js",
  6. "typings": "lib/index.d.ts",
  7. "dependencies": {
  8. "codemirror": "^5.10.0",
  9. "jupyter-js-cells": "^0.2.5",
  10. "jupyter-js-filebrowser": "^0.4.7",
  11. "jupyter-js-notebook": "^0.3.2",
  12. "jupyter-js-services": "^0.4.1",
  13. "jupyter-js-terminal": "^0.1.12",
  14. "jupyter-js-utils": "^0.2.7",
  15. "jupyter-js-widgets": "^0.0.2",
  16. "phosphide": "^0.2.0",
  17. "phosphor-codemirror": "^0.0.1",
  18. "phosphor-di": "^0.9.0",
  19. "phosphor-properties": "^2.0.0",
  20. "phosphor-tabs": "^1.0.0-rc.2"
  21. },
  22. "devDependencies": {
  23. "css-loader": "^0.23.1",
  24. "expect.js": "^0.3.1",
  25. "fs-extra": "^0.26.4",
  26. "istanbul-instrumenter-loader": "^0.1.3",
  27. "json-loader": "^0.5.4",
  28. "karma": "^0.13.19",
  29. "karma-chrome-launcher": "^0.2.2",
  30. "karma-coverage": "^0.5.3",
  31. "karma-firefox-launcher": "^0.1.7",
  32. "karma-ie-launcher": "^0.2.0",
  33. "karma-mocha": "^0.2.1",
  34. "karma-mocha-reporter": "^1.1.5",
  35. "mocha": "^2.3.4",
  36. "rimraf": "^2.5.0",
  37. "style-loader": "^0.13.0",
  38. "typedoc": "^0.3.12",
  39. "typescript": "^1.7.5",
  40. "webpack": "^1.12.11"
  41. },
  42. "scripts": {
  43. "clean": "rimraf docs && rimraf lib && rimraf test/build",
  44. "clean:example": "rimraf example/build",
  45. "build:example": "webpack --config example/webpack.conf.js",
  46. "build:src": "tsc --project src && node scripts/copycss.js",
  47. "build:test": "tsc --project test/src && webpack --config test/webpack.conf.js",
  48. "build": "npm run build:src && npm run build:test",
  49. "docs": "typedoc --options scripts/tdoptions.json",
  50. "postinstall": "npm dedupe",
  51. "prepublish": "npm run build",
  52. "test:chrome": "karma start --browsers=Chrome test/karma.conf.js",
  53. "test:coverage": "webpack --config test/webpack-cov.conf.js && karma start test/karma-cov.conf.js",
  54. "test:firefox": "karma start --browsers=Firefox test/karma.conf.js",
  55. "test:ie": "karma start --browsers=IE test/karma.conf.js",
  56. "test:debug": "karma start --browsers=Chrome --singleRun=false --debug=true test/karma.conf.js",
  57. "test": "npm run test:firefox"
  58. },
  59. "repository": {
  60. "type": "git",
  61. "url": "https://github.com/jupyter/jupyter-js-plugins"
  62. },
  63. "keywords": [
  64. "jupyter",
  65. "jupyterlab",
  66. "plugins",
  67. "lab"
  68. ],
  69. "files": [
  70. "lib/*.css",
  71. "lib/*.d.ts",
  72. "lib/*.js",
  73. "lib/**/*.css",
  74. "lib/**/*.d.ts",
  75. "lib/**/*.js"
  76. ],
  77. "author": "Project Jupyter",
  78. "license": "BSD-3-Clause",
  79. "bugs": {
  80. "url": "https://github.com/jupyter/jupyter-js-plugins/issues"
  81. },
  82. "homepage": "https://github.com/jupyter/jupyter-js-plugins"
  83. }