package.json 2.6 KB

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