package.json 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "jupyter-js-notebook",
  3. "version": "0.19.1",
  4. "description": "Notebook widget for JupyterLab",
  5. "main": "lib/index.js",
  6. "typings": "lib/index.d.ts",
  7. "dependencies": {
  8. "codemirror": "^5.11.0",
  9. "diff-match-patch": "^1.0.0",
  10. "file-loader": "^0.8.5",
  11. "jupyter-js-services": "^0.10.1",
  12. "jupyter-js-ui": "^0.11.0",
  13. "jupyter-js-utils": "^0.4.0",
  14. "marked": "^0.3.5",
  15. "phosphor-disposable": "^1.0.5",
  16. "phosphor-observablelist": "^1.0.0-beta",
  17. "phosphor-panel": "^1.0.0-rc.1",
  18. "phosphor-properties": "^2.0.0",
  19. "phosphor-signaling": "^1.2.0",
  20. "phosphor-widget": "^1.0.0-rc.1",
  21. "sanitizer": "^0.1.3"
  22. },
  23. "devDependencies": {
  24. "css-loader": "^0.23.1",
  25. "expect.js": "^0.3.1",
  26. "fs-extra": "^0.26.3",
  27. "istanbul-instrumenter-loader": "^0.1.3",
  28. "json-loader": "^0.5.4",
  29. "karma": "^0.13.9",
  30. "karma-chrome-launcher": "^0.2.0",
  31. "karma-coverage": "^0.5.3",
  32. "karma-firefox-launcher": "^0.1.6",
  33. "karma-ie-launcher": "^0.2.0",
  34. "karma-mocha": "^0.2.0",
  35. "karma-mocha-reporter": "^1.1.1",
  36. "mocha": "^2.2.5",
  37. "rimraf": "^2.4.2",
  38. "style-loader": "^0.13.0",
  39. "typedoc": "https://github.com/SierraSoftworks/typedoc.git#cb5aea2b218b4f773451e2818a48629ee9c5066e",
  40. "typescript": "^1.8.0",
  41. "watch": "^0.17.1",
  42. "webpack": "^1.12.9"
  43. },
  44. "scripts": {
  45. "clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
  46. "clean:examples": "node scripts/cleanexamples.js",
  47. "build:examples": "node scripts/buildexamples.js",
  48. "build:src": "tsc --project src && node scripts/copycss.js",
  49. "build:test": "tsc --project test/src && webpack --config test/webpack.conf.js",
  50. "build": "npm run build:src && npm run build:test",
  51. "docs": "typedoc --mode file --module commonjs --excludeNotExported --target es5 --moduleResolution node --out docs/ src",
  52. "postinstall": "npm dedupe",
  53. "prepublish": "npm run build",
  54. "test:chrome": "karma start --browsers=Chrome test/karma.conf.js",
  55. "test:coverage": "webpack --config test/webpack-cov.conf.js && karma start test/karma-cov.conf.js",
  56. "test:firefox": "karma start --browsers=Firefox test/karma.conf.js",
  57. "test:ie": "karma start --browsers=IE test/karma.conf.js",
  58. "test:debug": "karma start --browsers=Chrome --singleRun=false --debug=true test/karma.conf.js",
  59. "test": "npm run test:firefox",
  60. "watch:examples": "watch 'npm run build && npm run build:examples' src --wait 10",
  61. "watch": "watch 'npm run build' src"
  62. },
  63. "repository": {
  64. "type": "git",
  65. "url": "https://github.com/jupyter/jupyter-js-notebook"
  66. },
  67. "keywords": [
  68. "jupyter",
  69. "notebook"
  70. ],
  71. "files": [
  72. "lib/*.js",
  73. "lib/*.d.ts",
  74. "lib/*.css",
  75. "lib/**/*.css",
  76. "lib/**/*.d.ts",
  77. "lib/**/*.js"
  78. ],
  79. "author": "Project Jupyter",
  80. "license": "BSD-3-Clause",
  81. "bugs": {
  82. "url": "https://github.com/jupyter/jupyter-js-notebook/issues"
  83. },
  84. "homepage": "https://github.com/jupyter/jupyter-js-notebook"
  85. }