package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@jupyterlab/statedb",
  3. "version": "3.4.3",
  4. "description": "Package for managing state in Jupyterlab",
  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": false,
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "directories": {
  19. "lib": "lib/"
  20. },
  21. "files": [
  22. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  23. "schema/*.json",
  24. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  25. ],
  26. "scripts": {
  27. "build": "tsc -b",
  28. "build:test": "tsc --build tsconfig.test.json",
  29. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  30. "docs": "typedoc src",
  31. "test": "jest",
  32. "test:cov": "jest --collect-coverage",
  33. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  34. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  35. "watch": "tsc -b --watch"
  36. },
  37. "dependencies": {
  38. "@lumino/commands": "^1.19.0",
  39. "@lumino/coreutils": "^1.11.0",
  40. "@lumino/disposable": "^1.10.0",
  41. "@lumino/properties": "^1.8.0",
  42. "@lumino/signaling": "^1.10.0"
  43. },
  44. "devDependencies": {
  45. "@jupyterlab/testutils": "^3.4.3",
  46. "@types/jest": "^26.0.10",
  47. "jest": "^26.4.2",
  48. "rimraf": "~3.0.0",
  49. "ts-jest": "^26.3.0",
  50. "typedoc": "~0.21.2",
  51. "typescript": "~4.1.3"
  52. },
  53. "publishConfig": {
  54. "access": "public"
  55. }
  56. }