package.json 849 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "mquery",
  3. "version": "4.0.3",
  4. "description": "Expressive query building for MongoDB",
  5. "main": "lib/mquery.js",
  6. "scripts": {
  7. "test": "mocha 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": ">=12.0.0"
  17. },
  18. "dependencies": {
  19. "debug": "4.x"
  20. },
  21. "devDependencies": {
  22. "eslint": "8.x",
  23. "eslint-plugin-mocha-no-only": "1.1.1",
  24. "mocha": "9.x",
  25. "mongodb": "4.x"
  26. },
  27. "bugs": {
  28. "url": "https://github.com/aheckmann/mquery/issues/new"
  29. },
  30. "author": "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
  31. "license": "MIT",
  32. "keywords": [
  33. "mongodb",
  34. "query",
  35. "builder"
  36. ],
  37. "homepage": "https://github.com/aheckmann/mquery/"
  38. }