package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@jupyterlab/coreutils",
  3. "version": "5.4.3",
  4. "description": "JupyterLab - Core Utilities",
  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": false,
  16. "main": "lib/index.js",
  17. "browser": {
  18. "path": "path-browserify"
  19. },
  20. "types": "lib/index.d.ts",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/*.d.ts",
  26. "lib/*.js.map",
  27. "lib/*.js",
  28. "lib/*.json"
  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. "test": "jest",
  36. "test:cov": "jest --collect-coverage",
  37. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  38. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  39. "watch": "tsc -b --watch"
  40. },
  41. "dependencies": {
  42. "@lumino/coreutils": "^1.11.0",
  43. "@lumino/disposable": "^1.10.0",
  44. "@lumino/signaling": "^1.10.0",
  45. "minimist": "~1.2.0",
  46. "moment": "^2.29.4",
  47. "path-browserify": "^1.0.0",
  48. "url-parse": "~1.5.1"
  49. },
  50. "devDependencies": {
  51. "@jupyterlab/testutils": "^3.4.3",
  52. "@types/jest": "^26.0.10",
  53. "@types/minimist": "^1.2.0",
  54. "@types/url-parse": "^1.4.3",
  55. "jest": "^26.4.2",
  56. "rimraf": "~3.0.0",
  57. "ts-jest": "^26.3.0",
  58. "typedoc": "~0.21.2",
  59. "typescript": "~4.1.3"
  60. },
  61. "publishConfig": {
  62. "access": "public"
  63. },
  64. "jupyterlab": {
  65. "coreDependency": true
  66. }
  67. }