package.json 3.0 KB

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