package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@jupyterlab/documentsearch",
  3. "version": "3.2.0-beta.0",
  4. "description": "JupyterLab - Document Search",
  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/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  27. "style/index.js"
  28. ],
  29. "scripts": {
  30. "build": "tsc -b",
  31. "build:test": "tsc --build tsconfig.test.json",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "test": "jest",
  34. "test:cov": "jest --collect-coverage",
  35. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  36. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  37. "watch": "tsc -w --listEmittedFiles"
  38. },
  39. "dependencies": {
  40. "@jupyterlab/apputils": "^3.2.0-beta.0",
  41. "@jupyterlab/cells": "^3.2.0-beta.0",
  42. "@jupyterlab/codeeditor": "^3.2.0-beta.0",
  43. "@jupyterlab/codemirror": "^3.2.0-beta.0",
  44. "@jupyterlab/fileeditor": "^3.2.0-beta.0",
  45. "@jupyterlab/notebook": "^3.2.0-beta.0",
  46. "@jupyterlab/translation": "^3.2.0-beta.0",
  47. "@jupyterlab/ui-components": "^3.2.0-beta.0",
  48. "@lumino/algorithm": "^1.3.3",
  49. "@lumino/coreutils": "^1.5.3",
  50. "@lumino/disposable": "^1.4.3",
  51. "@lumino/polling": "^1.3.3",
  52. "@lumino/signaling": "^1.4.3",
  53. "@lumino/widgets": "^1.19.0",
  54. "codemirror": "~5.61.0",
  55. "react": "^17.0.1"
  56. },
  57. "devDependencies": {
  58. "@jupyterlab/testutils": "^3.2.0-beta.0",
  59. "@types/jest": "^26.0.10",
  60. "jest": "^26.4.2",
  61. "rimraf": "~3.0.0",
  62. "ts-jest": "^26.3.0",
  63. "typescript": "~4.1.3"
  64. },
  65. "publishConfig": {
  66. "access": "public"
  67. },
  68. "styleModule": "style/index.js"
  69. }