package.json 3.0 KB

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