package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "@jupyterlab/debugger-extension",
  3. "version": "3.0.0-rc.10",
  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. ],
  23. "main": "lib/index.js",
  24. "types": "lib/index.d.ts",
  25. "style": "style/index.css",
  26. "directories": {
  27. "lib": "lib/"
  28. },
  29. "files": [
  30. "lib/**/*.d.ts",
  31. "lib/**/*.js.map",
  32. "lib/**/*.js",
  33. "schema/*.json",
  34. "style/**/*.css",
  35. "style/**/*.svg"
  36. ],
  37. "scripts": {
  38. "build": "tsc -b",
  39. "build:test": "tsc --build tsconfig.test.json",
  40. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo && rimraf tsconfig.test.tsbuildinfo && rimraf tests/build",
  41. "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
  42. "prepublishOnly": "npm run build",
  43. "test": "jest",
  44. "test:cov": "jest --collect-coverage",
  45. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  46. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  47. "watch": "tsc -b --watch"
  48. },
  49. "dependencies": {
  50. "@jupyterlab/application": "^3.0.0-rc.10",
  51. "@jupyterlab/apputils": "^3.0.0-rc.10",
  52. "@jupyterlab/codeeditor": "^3.0.0-rc.10",
  53. "@jupyterlab/console": "^3.0.0-rc.10",
  54. "@jupyterlab/coreutils": "^5.0.0-rc.10",
  55. "@jupyterlab/debugger": "^3.0.0-rc.10",
  56. "@jupyterlab/docregistry": "^3.0.0-rc.10",
  57. "@jupyterlab/fileeditor": "^3.0.0-rc.10",
  58. "@jupyterlab/notebook": "^3.0.0-rc.10",
  59. "@jupyterlab/services": "^6.0.0-rc.10",
  60. "@jupyterlab/settingregistry": "^3.0.0-rc.10",
  61. "@jupyterlab/translation": "^3.0.0-rc.10"
  62. },
  63. "devDependencies": {
  64. "@babel/core": "^7.10.2",
  65. "@babel/preset-env": "^7.10.2",
  66. "@jupyterlab/testutils": "^3.0.0-rc.10",
  67. "@types/codemirror": "^0.0.97",
  68. "@types/jest": "^26.0.10",
  69. "@types/react-dom": "^17.0.0",
  70. "jest": "^26.4.2",
  71. "jest-junit": "^11.1.0",
  72. "jest-raw-loader": "^1.0.1",
  73. "jest-summary-reporter": "^0.0.2",
  74. "rimraf": "~3.0.0",
  75. "shell-quote": "^1.7.2",
  76. "ts-jest": "^26.3.0",
  77. "typedoc": "0.17.0-3",
  78. "typescript": "~4.0.2"
  79. },
  80. "publishConfig": {
  81. "access": "public"
  82. },
  83. "jupyterlab": {
  84. "extension": true,
  85. "schemaDir": "schema"
  86. }
  87. }