package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@e22m4u/js-repository",
  3. "version": "0.0.42",
  4. "description": "Модуль для работы с базами данных для Node.js",
  5. "type": "module",
  6. "main": "src/index.js",
  7. "engines": {
  8. "node": ">=14"
  9. },
  10. "scripts": {
  11. "lint": "tsc && eslint .",
  12. "lint:fix": "tsc && eslint . --fix",
  13. "format": "prettier --write \"./src/**/*.js\"",
  14. "test": "npm run lint && c8 --reporter=text-summary mocha",
  15. "test:coverage": "npm run lint && c8 --reporter=text mocha",
  16. "build:doc": "tsc && npx typedoc",
  17. "prepare": "npx husky install"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/e22m4u/js-repository.git"
  22. },
  23. "keywords": [
  24. "Repository",
  25. "ORM",
  26. "ODM",
  27. "Database",
  28. "Datasource",
  29. "Relation",
  30. "Inclusion",
  31. "Memory"
  32. ],
  33. "author": "e22m4u <e22m4u@gmail.com>",
  34. "license": "MIT",
  35. "homepage": "https://github.com/e22m4u/js-repository",
  36. "dependencies": {
  37. "@e22m4u/js-format": "0.0.7",
  38. "@e22m4u/js-service": "0.0.7"
  39. },
  40. "devDependencies": {
  41. "@commitlint/cli": "^18.4.3",
  42. "@commitlint/config-conventional": "^18.4.3",
  43. "c8": "^8.0.1",
  44. "chai": "^4.3.10",
  45. "chai-as-promised": "^7.1.1",
  46. "chai-spies": "^1.1.0",
  47. "chai-subset": "^1.6.0",
  48. "eslint": "^8.56.0",
  49. "eslint-config-prettier": "^9.1.0",
  50. "eslint-plugin-chai-expect": "^3.0.0",
  51. "eslint-plugin-jsdoc": "^46.9.1",
  52. "eslint-plugin-mocha": "^10.2.0",
  53. "husky": "^8.0.3",
  54. "mocha": "^10.2.0",
  55. "prettier": "^3.1.1",
  56. "typedoc": "^0.25.4",
  57. "typescript": "^5.3.3"
  58. }
  59. }