package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@jupyterlab/logconsole",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Log Console",
  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/**/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  27. "style/index.js"
  28. ],
  29. "scripts": {
  30. "build": "tsc -b",
  31. "build:test": "tsc --build tsconfig.test.json",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "test": "jest",
  34. "test:cov": "jest --collect-coverage",
  35. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  36. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  37. "watch": "tsc -b --watch"
  38. },
  39. "dependencies": {
  40. "@jupyterlab/coreutils": "^5.4.3",
  41. "@jupyterlab/nbformat": "^3.4.3",
  42. "@jupyterlab/outputarea": "^3.4.3",
  43. "@jupyterlab/rendermime": "^3.4.3",
  44. "@jupyterlab/services": "^6.4.3",
  45. "@jupyterlab/translation": "^3.4.3",
  46. "@lumino/coreutils": "^1.11.0",
  47. "@lumino/disposable": "^1.10.0",
  48. "@lumino/messaging": "^1.10.0",
  49. "@lumino/signaling": "^1.10.0",
  50. "@lumino/widgets": "^1.30.0"
  51. },
  52. "devDependencies": {
  53. "@jupyterlab/testutils": "^3.4.3",
  54. "@types/jest": "^26.0.10",
  55. "jest": "^26.4.2",
  56. "rimraf": "~3.0.0",
  57. "ts-jest": "^26.3.0",
  58. "typescript": "~4.1.3"
  59. },
  60. "publishConfig": {
  61. "access": "public"
  62. },
  63. "styleModule": "style/index.js"
  64. }