package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@jupyterlab/apputils",
  3. "version": "2.1.0",
  4. "description": "JupyterLab - Application 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. "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. "watch": "tsc -b --watch"
  41. },
  42. "dependencies": {
  43. "@jupyterlab/coreutils": "^4.1.0",
  44. "@jupyterlab/services": "^5.1.0",
  45. "@jupyterlab/settingregistry": "^2.1.0",
  46. "@jupyterlab/statedb": "^2.1.0",
  47. "@jupyterlab/ui-components": "^2.1.0",
  48. "@lumino/algorithm": "^1.2.3",
  49. "@lumino/commands": "^1.10.1",
  50. "@lumino/coreutils": "^1.4.2",
  51. "@lumino/disposable": "^1.3.5",
  52. "@lumino/domutils": "^1.1.7",
  53. "@lumino/messaging": "^1.3.3",
  54. "@lumino/properties": "^1.1.6",
  55. "@lumino/signaling": "^1.3.5",
  56. "@lumino/virtualdom": "^1.6.1",
  57. "@lumino/widgets": "^1.11.1",
  58. "@types/react": "~16.9.16",
  59. "react": "~16.9.0",
  60. "react-dom": "~16.9.0",
  61. "sanitize-html": "~1.20.1"
  62. },
  63. "devDependencies": {
  64. "@jupyterlab/testutils": "^2.1.0",
  65. "@types/jest": "^24.0.23",
  66. "@types/react-dom": "~16.9.4",
  67. "@types/sanitize-html": "^1.20.2",
  68. "jest": "^25.2.3",
  69. "rimraf": "~3.0.0",
  70. "ts-jest": "^25.2.1",
  71. "typedoc": "^0.15.4",
  72. "typescript": "~3.7.3"
  73. },
  74. "publishConfig": {
  75. "access": "public"
  76. }
  77. }