package.json 2.7 KB

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