package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@e22m4u/js-repository-mongodb-adapter",
  3. "version": "0.1.5",
  4. "description": "MongoDB адаптер для @e22m4u/js-repository",
  5. "type": "module",
  6. "main": "src/index.js",
  7. "engines": {
  8. "node": ">=14"
  9. },
  10. "scripts": {
  11. "lint": "eslint .",
  12. "lint:fix": "eslint . --fix",
  13. "format": "prettier --write \"./src/**/*.js\"",
  14. "test": "eslint . && c8 --reporter=text-summary mocha",
  15. "test:coverage": "eslint . && c8 --reporter=text mocha",
  16. "prepare": "husky"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/e22m4u/js-repository-mongodb-adapter.git"
  21. },
  22. "keywords": [
  23. "MongoDB",
  24. "Repository",
  25. "ORM",
  26. "ODM",
  27. "Database",
  28. "Datasource",
  29. "Relations"
  30. ],
  31. "author": "e22m4u <e22m4u@yandex.ru>",
  32. "license": "MIT",
  33. "homepage": "https://github.com/e22m4u/js-repository-mongodb-adapter",
  34. "dependencies": {
  35. "mongodb": "5.9.2"
  36. },
  37. "peerDependencies": {
  38. "@e22m4u/js-format": "*",
  39. "@e22m4u/js-repository": "0.1.x",
  40. "@e22m4u/js-service": "*"
  41. },
  42. "devDependencies": {
  43. "@commitlint/cli": "~19.3.0",
  44. "@commitlint/config-conventional": "~19.2.2",
  45. "@eslint/js": "^9.5.0",
  46. "c8": "~10.1.2",
  47. "chai": "~5.1.1",
  48. "chai-as-promised": "~8.0.0",
  49. "dotenv": "~16.4.5",
  50. "eslint": "~9.5.0",
  51. "eslint-config-prettier": "~9.1.0",
  52. "eslint-plugin-chai-expect": "~3.1.0",
  53. "eslint-plugin-mocha": "~10.4.3",
  54. "globals": "^15.6.0",
  55. "husky": "~9.0.11",
  56. "mocha": "~10.4.0",
  57. "prettier": "~3.3.2"
  58. }
  59. }