package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@e22m4u/js-repository-mongodb-adapter",
  3. "version": "0.0.13",
  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": "npx husky install"
  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. "Relation",
  30. "Inclusion"
  31. ],
  32. "author": "e22m4u <e22m4u@gmail.com>",
  33. "license": "MIT",
  34. "homepage": "https://github.com/e22m4u/js-repository-mongodb-adapter",
  35. "dependencies": {
  36. "mongodb": "5.8.1"
  37. },
  38. "peerDependencies": {
  39. "@e22m4u/js-format": "*",
  40. "@e22m4u/js-service": "*",
  41. "@e22m4u/js-repository": "~0.0.31"
  42. },
  43. "devDependencies": {
  44. "@commitlint/cli": "^17.7.1",
  45. "@commitlint/config-conventional": "^17.7.0",
  46. "c8": "^8.0.1",
  47. "chai": "^4.3.7",
  48. "chai-as-promised": "^7.1.1",
  49. "chai-spies": "^1.0.0",
  50. "dotenv": "^16.3.1",
  51. "eslint": "^8.47.0",
  52. "eslint-config-prettier": "^9.0.0",
  53. "eslint-plugin-chai-expect": "^3.0.0",
  54. "eslint-plugin-mocha": "^10.1.0",
  55. "husky": "^8.0.3",
  56. "mocha": "^10.2.0",
  57. "prettier": "^3.0.1"
  58. }
  59. }