package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "@jupyterlab/toc",
  3. "version": "5.1.0-beta.0",
  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. "style/index.js"
  21. ],
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "style": "style/index.css",
  25. "files": [
  26. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  27. "schema/*.json",
  28. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  29. "style/index.js"
  30. ],
  31. "scripts": {
  32. "build": "tsc -b",
  33. "build:test": "tsc --build tsconfig.test.json",
  34. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "docs": "typedoc src",
  36. "prepublishOnly": "npm run build",
  37. "test": "jest",
  38. "test:cov": "jest --collect-coverage",
  39. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  40. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  41. "watch": "tsc -b --watch"
  42. },
  43. "dependencies": {
  44. "@jupyterlab/apputils": "^3.1.0-beta.0",
  45. "@jupyterlab/cells": "^3.1.0-beta.0",
  46. "@jupyterlab/coreutils": "^5.1.0-beta.0",
  47. "@jupyterlab/docmanager": "^3.1.0-beta.0",
  48. "@jupyterlab/docregistry": "^3.1.0-beta.0",
  49. "@jupyterlab/fileeditor": "^3.1.0-beta.0",
  50. "@jupyterlab/markdownviewer": "^3.1.0-beta.0",
  51. "@jupyterlab/notebook": "^3.1.0-beta.0",
  52. "@jupyterlab/rendermime": "^3.1.0-beta.0",
  53. "@jupyterlab/settingregistry": "^3.1.0-beta.0",
  54. "@jupyterlab/translation": "^3.1.0-beta.0",
  55. "@jupyterlab/ui-components": "^3.1.0-beta.0",
  56. "@lumino/coreutils": "^1.5.3",
  57. "@lumino/messaging": "^1.4.3",
  58. "@lumino/signaling": "^1.4.3",
  59. "@lumino/widgets": "^1.19.0",
  60. "react": "^17.0.1",
  61. "react-dom": "^17.0.1"
  62. },
  63. "devDependencies": {
  64. "@babel/core": "^7.10.2",
  65. "@babel/preset-env": "^7.10.2",
  66. "@jupyterlab/testutils": "^3.1.0-beta.0",
  67. "@types/jest": "^26.0.10",
  68. "@types/react": "^17.0.0",
  69. "@types/react-dom": "^17.0.0",
  70. "jest": "^26.4.2",
  71. "rimraf": "~3.0.0",
  72. "ts-jest": "^26.3.0",
  73. "typedoc": "~0.20.0-beta.27",
  74. "typescript": "~4.1.3"
  75. },
  76. "publishConfig": {
  77. "access": "public"
  78. },
  79. "styleModule": "style/index.js"
  80. }