package.json 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "jupyter-js-notebook",
  3. "version": "0.16.0",
  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.7.1",
  12. "jupyter-js-ui": "^0.5.1",
  13. "jupyter-js-utils": "^0.3.4",
  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. "tsconfig-cli": "^0.1.1",
  40. "typedoc": "^0.3.11",
  41. "typescript": "^1.8.0",
  42. "watch": "^0.17.1",
  43. "webpack": "^1.12.9"
  44. },
  45. "scripts": {
  46. "clean": "rimraf docs && rimraf lib && rimraf test/build",
  47. "clean:example": "rimraf example/build",
  48. "build:example": "cd example && npm run update && npm run build",
  49. "build:src": "tsc --project src && node scripts/copycss.js",
  50. "build:test": "tsconfig -u test/src/tsconfig.json && 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. "watch:example": "watch 'npm run build && npm run build:example' src --wait 10",
  62. "watch": "watch 'npm run build' src"
  63. },
  64. "repository": {
  65. "type": "git",
  66. "url": "https://github.com/jupyter/jupyter-js-notebook"
  67. },
  68. "keywords": [
  69. "jupyter",
  70. "notebook"
  71. ],
  72. "files": [
  73. "lib/*.js",
  74. "lib/*.d.ts",
  75. "lib/*.css",
  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-notebook/issues"
  84. },
  85. "homepage": "https://github.com/jupyter/jupyter-js-notebook"
  86. }