package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@jupyterlab/settingregistry",
  3. "version": "3.2.0-beta.0",
  4. "description": "Settings registry for 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 --tsconfig typedoc-tsconfig.json",
  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. "@jupyterlab/statedb": "^3.2.0-beta.0",
  39. "@lumino/commands": "^1.12.0",
  40. "@lumino/coreutils": "^1.5.3",
  41. "@lumino/disposable": "^1.4.3",
  42. "@lumino/signaling": "^1.4.3",
  43. "ajv": "^6.12.3",
  44. "json5": "^2.1.1"
  45. },
  46. "devDependencies": {
  47. "@jupyterlab/testutils": "^3.2.0-beta.0",
  48. "@types/jest": "^26.0.10",
  49. "@types/json5": "^0.0.30",
  50. "jest": "^26.4.2",
  51. "rimraf": "~3.0.0",
  52. "ts-jest": "^26.3.0",
  53. "typescript": "~4.1.3"
  54. },
  55. "publishConfig": {
  56. "access": "public"
  57. }
  58. }