package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@e22m4u/js-repository",
  3. "version": "0.0.30",
  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. "prepare": "npx husky install"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/e22m4u/js-repository.git"
  21. },
  22. "keywords": [
  23. "Repository",
  24. "ORM",
  25. "ODM",
  26. "Database",
  27. "Datasource",
  28. "Relation",
  29. "Inclusion",
  30. "Memory"
  31. ],
  32. "author": "e22m4u <e22m4u@gmail.com>",
  33. "license": "MIT",
  34. "homepage": "https://github.com/e22m4u/js-repository",
  35. "dependencies": {
  36. "@e22m4u/js-service": "0.0.7",
  37. "@e22m4u/js-format": "0.0.7"
  38. },
  39. "devDependencies": {
  40. "@commitlint/cli": "^17.7.1",
  41. "@commitlint/config-conventional": "^17.7.0",
  42. "c8": "^8.0.1",
  43. "chai": "^4.3.7",
  44. "chai-as-promised": "^7.1.1",
  45. "chai-spies": "^1.0.0",
  46. "chai-subset": "^1.6.0",
  47. "eslint": "^8.47.0",
  48. "eslint-config-prettier": "^9.0.0",
  49. "eslint-plugin-chai-expect": "^3.0.0",
  50. "eslint-plugin-jsdoc": "^46.8.2",
  51. "eslint-plugin-mocha": "^10.1.0",
  52. "husky": "^8.0.3",
  53. "mocha": "^10.2.0",
  54. "prettier": "^3.0.1",
  55. "typescript": "^5.2.2"
  56. }
  57. }