package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@e22m4u/js-repository",
  3. "version": "0.1.16",
  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": "husky"
  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. "Relations"
  29. ],
  30. "author": "e22m4u <e22m4u@yandex.ru>",
  31. "license": "MIT",
  32. "homepage": "https://github.com/e22m4u/js-repository",
  33. "peerDependencies": {
  34. "@e22m4u/js-service": "0.0.x"
  35. },
  36. "devDependencies": {
  37. "@commitlint/cli": "~19.3.0",
  38. "@commitlint/config-conventional": "~19.2.2",
  39. "@types/chai": "~4.3.16",
  40. "@types/chai-as-promised": "~7.1.8",
  41. "@types/chai-spies": "~1.0.6",
  42. "@types/mocha": "~10.0.6",
  43. "@typescript-eslint/eslint-plugin": "~7.13.1",
  44. "@typescript-eslint/parser": "~7.13.1",
  45. "c8": "~10.1.2",
  46. "chai": "~5.1.1",
  47. "chai-as-promised": "~8.0.0",
  48. "chai-spies": "~1.1.0",
  49. "chai-subset": "~1.6.0",
  50. "eslint": "~8.57.0",
  51. "eslint-config-prettier": "~9.1.0",
  52. "eslint-plugin-chai-expect": "~3.1.0",
  53. "eslint-plugin-jsdoc": "~48.2.12",
  54. "eslint-plugin-mocha": "~10.4.3",
  55. "husky": "~9.0.11",
  56. "mocha": "~10.4.0",
  57. "prettier": "~3.3.2",
  58. "ts-node": "~10.9.2",
  59. "typescript": "~5.5.2"
  60. }
  61. }