package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "mungedb-aggregate",
  3. "version": "2.6.5",
  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. ],
  17. "main": "./mungedb-aggregate.js",
  18. "scripts": {
  19. "test": "npm_scripts/test/test.sh",
  20. "browserify": "N=aggregate; browserify --standalone $N ./lib/index.js | tee $N.web.js | uglifyjs -c > $N.web.min.js",
  21. "webpack": "N=aggregate; webpack -v -c --progress -d --output-library-target var --output-library $N --entry=./lib/ $N.web.js"
  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. "xregexp": "*"
  34. },
  35. "devDependencies": {
  36. "mocha": "*",
  37. "jshint": "*",
  38. "jscoverage": "*",
  39. "jscheckstyle": "*",
  40. "bson": "0.2.15"
  41. },
  42. "license": "AGPL",
  43. "private": true,
  44. "engine": {
  45. "node": ">=0.8"
  46. },
  47. "config": {}
  48. }