package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "@jupyterlab/console",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Code 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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "style/*.css"
  20. ],
  21. "sideEffects": [
  22. "style/*.css"
  23. ],
  24. "main": "lib/index.js",
  25. "types": "lib/index.d.ts",
  26. "style": "style/index.css",
  27. "directories": {
  28. "lib": "lib/"
  29. },
  30. "scripts": {
  31. "build": "tsc -b",
  32. "build:test": "tsc --build tsconfig.test.json",
  33. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  34. "docs": "typedoc src",
  35. "prepublishOnly": "npm run build",
  36. "test": "jest",
  37. "test:cov": "jest --collect-coverage",
  38. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  39. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  40. "test:watch": "npm run test -- --watch",
  41. "watch": "tsc -b --watch"
  42. },
  43. "dependencies": {
  44. "@jupyterlab/apputils": "^2.1.0",
  45. "@jupyterlab/cells": "^2.1.0",
  46. "@jupyterlab/codeeditor": "^2.1.0",
  47. "@jupyterlab/coreutils": "^4.1.0",
  48. "@jupyterlab/nbformat": "^2.1.0",
  49. "@jupyterlab/observables": "^3.1.0",
  50. "@jupyterlab/rendermime": "^2.1.0",
  51. "@jupyterlab/services": "^5.1.0",
  52. "@jupyterlab/ui-components": "^2.1.0",
  53. "@lumino/algorithm": "^1.2.3",
  54. "@lumino/coreutils": "^1.4.2",
  55. "@lumino/disposable": "^1.3.5",
  56. "@lumino/dragdrop": "^1.5.1",
  57. "@lumino/messaging": "^1.3.3",
  58. "@lumino/signaling": "^1.3.5",
  59. "@lumino/widgets": "^1.11.1"
  60. },
  61. "devDependencies": {
  62. "@jupyterlab/testutils": "^2.1.0",
  63. "@types/jest": "^24.0.23",
  64. "jest": "^25.2.3",
  65. "rimraf": "~3.0.0",
  66. "ts-jest": "^25.2.1",
  67. "typedoc": "^0.15.4",
  68. "typescript": "~3.7.3"
  69. },
  70. "publishConfig": {
  71. "access": "public"
  72. }
  73. }