package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "@jupyterlab/application",
  3. "version": "3.1.0-alpha.3",
  4. "description": "JupyterLab - Application",
  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/*.css",
  17. "style/index.js"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "style": "style/index.css",
  22. "directories": {
  23. "lib": "lib/"
  24. },
  25. "files": [
  26. "lib/*.d.ts",
  27. "lib/*.js.map",
  28. "lib/*.js",
  29. "style/*.css",
  30. "style/index.js"
  31. ],
  32. "scripts": {
  33. "build": "tsc -b",
  34. "build:test": "tsc --build tsconfig.test.json",
  35. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  36. "docs": "typedoc src",
  37. "prepublishOnly": "npm run build",
  38. "test": "jest",
  39. "test:cov": "jest --collect-coverage",
  40. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  41. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  42. "watch": "tsc -b --watch"
  43. },
  44. "dependencies": {
  45. "@fortawesome/fontawesome-free": "^5.12.0",
  46. "@jupyterlab/apputils": "^3.1.0-alpha.3",
  47. "@jupyterlab/coreutils": "^5.1.0-alpha.3",
  48. "@jupyterlab/docregistry": "^3.1.0-alpha.3",
  49. "@jupyterlab/rendermime": "^3.1.0-alpha.3",
  50. "@jupyterlab/rendermime-interfaces": "^3.1.0-alpha.3",
  51. "@jupyterlab/services": "^6.1.0-alpha.3",
  52. "@jupyterlab/statedb": "^3.1.0-alpha.3",
  53. "@jupyterlab/translation": "^3.1.0-alpha.3",
  54. "@jupyterlab/ui-components": "^3.1.0-alpha.3",
  55. "@lumino/algorithm": "^1.3.3",
  56. "@lumino/application": "^1.16.0",
  57. "@lumino/commands": "^1.12.0",
  58. "@lumino/coreutils": "^1.5.3",
  59. "@lumino/disposable": "^1.4.3",
  60. "@lumino/messaging": "^1.4.3",
  61. "@lumino/polling": "^1.3.3",
  62. "@lumino/properties": "^1.2.3",
  63. "@lumino/signaling": "^1.4.3",
  64. "@lumino/widgets": "^1.19.0"
  65. },
  66. "devDependencies": {
  67. "@jupyterlab/testutils": "^3.1.0-alpha.3",
  68. "@types/jest": "^26.0.10",
  69. "jest": "^26.4.2",
  70. "rimraf": "~3.0.0",
  71. "ts-jest": "^26.3.0",
  72. "typedoc": "~0.20.0-beta.27",
  73. "typescript": "~4.1.3"
  74. },
  75. "publishConfig": {
  76. "access": "public"
  77. },
  78. "jupyterlab": {
  79. "coreDependency": true,
  80. "extraStyles": {
  81. "@fortawesome/fontawesome-free": [
  82. "css/all.min.css",
  83. "css/v4-shims.min.css"
  84. ]
  85. }
  86. },
  87. "styleModule": "style/index.js"
  88. }