package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "@jupyterlab/rendermime",
  3. "version": "3.1.0-beta.0",
  4. "description": "JupyterLab - RenderMime",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "sideEffects": [
  16. "style/*.css",
  17. "style/index.js"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "directories": {
  23. "lib": "lib/"
  24. },
  25. "files": [
  26. "lib/*.d.ts",
  27. "lib/*.js.map",
  28. "lib/*.js",
  29. "style/*.css",
  30. "style/index.js"
  31. ],
  32. "scripts": {
  33. "build": "tsc -b",
  34. "build:test": "tsc --build tsconfig.test.json",
  35. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  36. "docs": "typedoc src",
  37. "prepublishOnly": "npm run build",
  38. "test": "jest",
  39. "test:cov": "jest --collect-coverage",
  40. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  41. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  42. "watch": "tsc -b --watch"
  43. },
  44. "dependencies": {
  45. "@jupyterlab/apputils": "^3.1.0-beta.0",
  46. "@jupyterlab/codemirror": "^3.1.0-beta.0",
  47. "@jupyterlab/coreutils": "^5.1.0-beta.0",
  48. "@jupyterlab/nbformat": "^3.1.0-beta.0",
  49. "@jupyterlab/observables": "^4.1.0-beta.0",
  50. "@jupyterlab/rendermime-interfaces": "^3.1.0-beta.0",
  51. "@jupyterlab/services": "^6.1.0-beta.0",
  52. "@jupyterlab/translation": "^3.1.0-beta.0",
  53. "@lumino/algorithm": "^1.3.3",
  54. "@lumino/coreutils": "^1.5.3",
  55. "@lumino/messaging": "^1.4.3",
  56. "@lumino/signaling": "^1.4.3",
  57. "@lumino/widgets": "^1.19.0",
  58. "lodash.escape": "^4.0.1",
  59. "marked": "^2.0.0"
  60. },
  61. "devDependencies": {
  62. "@jupyterlab/mathjax2": "^3.1.0-beta.0",
  63. "@jupyterlab/testutils": "^3.1.0-beta.0",
  64. "@types/jest": "^26.0.10",
  65. "@types/lodash.escape": "^4.0.6",
  66. "@types/marked": "^1.1.0",
  67. "jest": "^26.4.2",
  68. "json2html": "^0.0.8",
  69. "rimraf": "~3.0.0",
  70. "ts-jest": "^26.3.0",
  71. "typedoc": "~0.20.0-beta.27",
  72. "typescript": "~4.1.3"
  73. },
  74. "publishConfig": {
  75. "access": "public"
  76. },
  77. "styleModule": "style/index.js"
  78. }