package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "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#feature/mongo_2.6.5"
  29. },
  30. "keywords": [
  31. "aggregation",
  32. "manipulation",
  33. "alteration"
  34. ],
  35. "dependencies": {
  36. "async": "*",
  37. "xregexp": "git+https://github.com/KylePDavis/xregexp.git#0e7f2f75a5ef47612d84d019cf5164c1846f6bcd"
  38. },
  39. "devDependencies": {
  40. "mocha": "*",
  41. "jshint": "*",
  42. "jscoverage": "*",
  43. "jscheckstyle": "*",
  44. "bson": "~0.2.18"
  45. },
  46. "license": "AGPL",
  47. "private": true,
  48. "engine": {
  49. "node": ">=0.8"
  50. },
  51. "config": {}
  52. }