package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "mungedb-aggregate",
  3. "version": "2.4.0-rc0",
  4. "description": "A JavaScript data aggregation pipeline based on the MongoDB aggregation framework.",
  5. "author": "Rivera Group <support@riverainc.com>",
  6. "contributors": [
  7. "Adam Bell <ABell@riverainc.com>",
  8. "Charles Ezell <CEzell@riverainc.com>",
  9. "Chris Sexton <CSexton@riverainc.com>",
  10. "Jake Delaney <JDelaney@riverainc.com>",
  11. "Jared Hall <JHall@riverainc.com>",
  12. "Kyle P Davis <KDavis@riverainc.com>",
  13. "Phil Murray <PMurray@riverainc.com>",
  14. "Spencer Rathbun <SRathbun@riverainc.com>",
  15. "Tony Ennis <TEnnis@riverainc.com>",
  16. "Scott Munday <SMunday@riverainc.com>",
  17. "David Aebersold <DAebersold@riverainc.com>"
  18. ],
  19. "main": "./mungedb-aggregate.js",
  20. "scripts": {
  21. "test": "npm_scripts/test/test.sh"
  22. },
  23. "repository": {
  24. "url": "git+https://github.com/RiveraGroup/mungedb-aggregate.git#master"
  25. },
  26. "keywords": [
  27. "aggregation",
  28. "manipulation",
  29. "alteration"
  30. ],
  31. "dependencies": {
  32. "async": "*"
  33. },
  34. "devDependencies": {
  35. "mocha": "*",
  36. "jshint": "*",
  37. "jscoverage": "*",
  38. "jscheckstyle": "*"
  39. },
  40. "license": "AGPL",
  41. "private": true,
  42. "engine": {
  43. "node": ">=0.8"
  44. },
  45. "config": {}
  46. }