package.json 2.9 KB

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