package.json 814 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "mquery",
  3. "version": "6.0.0",
  4. "description": "Expressive query building for MongoDB",
  5. "main": "lib/mquery.js",
  6. "scripts": {
  7. "test": "mocha --exit test/index.js test/*.test.js",
  8. "fix-lint": "eslint . --fix",
  9. "lint": "eslint ."
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/aheckmann/mquery.git"
  14. },
  15. "engines": {
  16. "node": ">=20.19.0"
  17. },
  18. "devDependencies": {
  19. "eslint": "8.x",
  20. "eslint-plugin-mocha-no-only": "1.1.1",
  21. "mocha": "11.x",
  22. "mongodb": "6.x"
  23. },
  24. "bugs": {
  25. "url": "https://github.com/aheckmann/mquery/issues/new"
  26. },
  27. "author": "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
  28. "license": "MIT",
  29. "keywords": [
  30. "mongodb",
  31. "query",
  32. "builder"
  33. ],
  34. "homepage": "https://github.com/aheckmann/mquery/"
  35. }