package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "@jupyterlab/debugger-extension",
  3. "version": "3.0.0-rc.15",
  4. "description": "JupyterLab - Debugger Extension",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab",
  8. "jupyterlab-extension"
  9. ],
  10. "homepage": "https://github.com/jupyterlab/debugger",
  11. "bugs": {
  12. "url": "https://github.com/jupyterlab/debugger/issues"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/jupyterlab/debugger.git"
  17. },
  18. "license": "BSD-3-Clause",
  19. "author": "Project Jupyter",
  20. "sideEffects": [
  21. "style/**/*.css",
  22. "style/index.js"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "files": [
  31. "lib/**/*.d.ts",
  32. "lib/**/*.js.map",
  33. "lib/**/*.js",
  34. "schema/*.json",
  35. "style/**/*.css",
  36. "style/**/*.svg",
  37. "style/index.js"
  38. ],
  39. "scripts": {
  40. "build": "tsc -b",
  41. "build:test": "tsc --build tsconfig.test.json",
  42. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo && rimraf tsconfig.test.tsbuildinfo && rimraf tests/build",
  43. "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
  44. "prepublishOnly": "npm run build",
  45. "test": "jest",
  46. "test:cov": "jest --collect-coverage",
  47. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  48. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  49. "watch": "tsc -b --watch"
  50. },
  51. "dependencies": {
  52. "@jupyterlab/application": "^3.0.0-rc.15",
  53. "@jupyterlab/apputils": "^3.0.0-rc.15",
  54. "@jupyterlab/codeeditor": "^3.0.0-rc.15",
  55. "@jupyterlab/console": "^3.0.0-rc.15",
  56. "@jupyterlab/coreutils": "^5.0.0-rc.15",
  57. "@jupyterlab/debugger": "^3.0.0-rc.15",
  58. "@jupyterlab/docregistry": "^3.0.0-rc.15",
  59. "@jupyterlab/fileeditor": "^3.0.0-rc.15",
  60. "@jupyterlab/notebook": "^3.0.0-rc.15",
  61. "@jupyterlab/services": "^6.0.0-rc.15",
  62. "@jupyterlab/settingregistry": "^3.0.0-rc.15",
  63. "@jupyterlab/translation": "^3.0.0-rc.15"
  64. },
  65. "devDependencies": {
  66. "@babel/core": "^7.10.2",
  67. "@babel/preset-env": "^7.10.2",
  68. "@jupyterlab/testutils": "^3.0.0-rc.15",
  69. "@types/codemirror": "^0.0.97",
  70. "@types/jest": "^26.0.10",
  71. "@types/react-dom": "^17.0.0",
  72. "jest": "^26.4.2",
  73. "jest-junit": "^11.1.0",
  74. "jest-raw-loader": "^1.0.1",
  75. "jest-summary-reporter": "^0.0.2",
  76. "rimraf": "~3.0.0",
  77. "shell-quote": "^1.7.2",
  78. "ts-jest": "^26.3.0",
  79. "typedoc": "~0.20.0-beta.27",
  80. "typescript": "~4.1.3"
  81. },
  82. "publishConfig": {
  83. "access": "public"
  84. },
  85. "jupyterlab": {
  86. "extension": true,
  87. "schemaDir": "schema"
  88. },
  89. "styleModule": "style/index.js"
  90. }