package.json 2.6 KB

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