package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "@jupyterlab/codemirror",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - CodeMirror Editor Provider",
  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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "style/*.css"
  20. ],
  21. "sideEffects": true,
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "style": "style/index.css",
  25. "directories": {
  26. "lib": "lib/"
  27. },
  28. "scripts": {
  29. "build": "tsc -b",
  30. "build:test": "tsc --build tsconfig.test.json",
  31. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  32. "docs": "typedoc src",
  33. "prepublishOnly": "npm run build",
  34. "test": "jest",
  35. "test:cov": "jest --collect-coverage",
  36. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  37. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  38. "watch": "tsc -b --watch"
  39. },
  40. "dependencies": {
  41. "@jupyterlab/apputils": "^2.1.0",
  42. "@jupyterlab/codeeditor": "^2.1.0",
  43. "@jupyterlab/coreutils": "^4.1.0",
  44. "@jupyterlab/nbformat": "^2.1.0",
  45. "@jupyterlab/observables": "^3.1.0",
  46. "@jupyterlab/statusbar": "^2.1.0",
  47. "@lumino/algorithm": "^1.2.3",
  48. "@lumino/commands": "^1.10.1",
  49. "@lumino/coreutils": "^1.4.2",
  50. "@lumino/disposable": "^1.3.5",
  51. "@lumino/polling": "^1.1.1",
  52. "@lumino/signaling": "^1.3.5",
  53. "@lumino/widgets": "^1.11.1",
  54. "codemirror": "~5.53.2",
  55. "react": "~16.9.0"
  56. },
  57. "devDependencies": {
  58. "@jupyterlab/testutils": "^2.1.0",
  59. "@types/codemirror": "^0.0.76",
  60. "@types/jest": "^24.0.23",
  61. "jest": "^25.2.3",
  62. "rimraf": "~3.0.0",
  63. "ts-jest": "^25.2.1",
  64. "typedoc": "^0.15.4",
  65. "typescript": "~3.7.3"
  66. },
  67. "publishConfig": {
  68. "access": "public"
  69. },
  70. "jupyterlab": {
  71. "extraStyles": {
  72. "codemirror": [
  73. "lib/codemirror.css",
  74. "addon/dialog/dialog.css",
  75. "addon/fold/foldgutter.css",
  76. "theme/material.css",
  77. "theme/zenburn.css",
  78. "theme/abcdef.css",
  79. "theme/base16-light.css",
  80. "theme/base16-dark.css",
  81. "theme/dracula.css",
  82. "theme/hopscotch.css",
  83. "theme/mbo.css",
  84. "theme/mdn-like.css",
  85. "theme/seti.css",
  86. "theme/solarized.css",
  87. "theme/the-matrix.css",
  88. "theme/xq-light.css"
  89. ]
  90. }
  91. }
  92. }