package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. ],
  17. "main": "./mungedb-aggregate.js",
  18. "scripts": {
  19. "test": "npm_scripts/test/test.sh",
  20. "mocha": "mocha test/{,**/}*_test.js",
  21. "jshint": "jshint -e js,json .",
  22. "jscs": "jscs *.js lib/ test/",
  23. "benchmarks": "./benchmarksman.js example/*.js",
  24. "browserify": "N=aggregate; browserify --standalone $N ./lib/index.js | tee $N.web.js | uglifyjs -c > $N.web.min.js",
  25. "webpack": "N=aggregate; webpack -v -c --progress -d --output-library-target var --output-library $N --entry=./lib/ $N.web.js"
  26. },
  27. "repository": {
  28. "url": "git+https://github.com/RiveraGroup/mungedb-aggregate.git#master"
  29. },
  30. "keywords": [
  31. "aggregation",
  32. "manipulation",
  33. "alteration"
  34. ],
  35. "dependencies": {
  36. "sift": "0.5.6",
  37. "async": "*"
  38. },
  39. "devDependencies": {
  40. "mocha": "*",
  41. "jshint": "*",
  42. "jscoverage": "*",
  43. "jscheckstyle": "*"
  44. },
  45. "license": "AGPL",
  46. "private": true,
  47. "engine": {
  48. "node": ">=0.8"
  49. },
  50. "config": {}
  51. }