package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@jupyterlab/toc",
  3. "version": "5.0.0-rc.10",
  4. "description": "JupyterLab - Table of Contents widget",
  5. "keywords": [
  6. "jupyterlab"
  7. ],
  8. "homepage": "https://github.com/jupyterlab/jupyterlab",
  9. "bugs": {
  10. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/jupyterlab/jupyterlab.git"
  15. },
  16. "license": "BSD-3-Clause",
  17. "author": "Project Jupyter",
  18. "sideEffects": [
  19. "style/*.css"
  20. ],
  21. "main": "lib/index.js",
  22. "types": "lib/index.d.ts",
  23. "style": "style/index.css",
  24. "files": [
  25. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "schema/*.json",
  27. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  28. ],
  29. "scripts": {
  30. "build": "tsc -b",
  31. "build:test": "tsc --build tsconfig.test.json",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "docs": "typedoc src",
  34. "prepublishOnly": "npm run build",
  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. "@jupyterlab/apputils": "^3.0.0-rc.10",
  43. "@jupyterlab/cells": "^3.0.0-rc.10",
  44. "@jupyterlab/coreutils": "^5.0.0-rc.10",
  45. "@jupyterlab/docmanager": "^3.0.0-rc.10",
  46. "@jupyterlab/docregistry": "^3.0.0-rc.10",
  47. "@jupyterlab/fileeditor": "^3.0.0-rc.10",
  48. "@jupyterlab/markdownviewer": "^3.0.0-rc.10",
  49. "@jupyterlab/notebook": "^3.0.0-rc.10",
  50. "@jupyterlab/rendermime": "^3.0.0-rc.10",
  51. "@jupyterlab/translation": "^3.0.0-rc.10",
  52. "@jupyterlab/ui-components": "^3.0.0-rc.10",
  53. "@lumino/coreutils": "^1.5.3",
  54. "@lumino/messaging": "^1.4.3",
  55. "@lumino/signaling": "^1.4.3",
  56. "@lumino/widgets": "^1.14.0",
  57. "react": "^17.0.1",
  58. "react-dom": "^17.0.1"
  59. },
  60. "devDependencies": {
  61. "@babel/core": "^7.10.2",
  62. "@babel/preset-env": "^7.10.2",
  63. "@jupyterlab/testutils": "^3.0.0-rc.10",
  64. "@types/jest": "^26.0.10",
  65. "@types/react": "^17.0.0",
  66. "@types/react-dom": "^17.0.0",
  67. "jest": "^26.4.2",
  68. "rimraf": "~3.0.0",
  69. "ts-jest": "^26.3.0",
  70. "typescript": "~4.0.2"
  71. },
  72. "publishConfig": {
  73. "access": "public"
  74. }
  75. }