package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "munge",
  3. "version": "0.4.4+2013.03.22",
  4. "description": "A JavaScript data munging pipeline based on the MongoDB aggregation framework.",
  5. "author": "Rivera Group <support@riverainc.com>",
  6. "contributors": [
  7. "Adam Bell <ABell@riverainc.com>",
  8. "Kyle Davis <KDavis@riverainc.com>",
  9. "Phil Murray <PMurray@riverainc.com>",
  10. "Spencer Rathbun <SRathbun@riverainc.com>",
  11. "Charles Ezell <CEzell@riverainc.com>"
  12. ],
  13. "main": "./mungedb-aggregate.js",
  14. "scripts": {
  15. "test": "npm_scripts/test/test.sh"
  16. },
  17. "repository": {
  18. "type": "svn",
  19. "url": "http://svn.rcg.local/svn/devrd/eagle6/"
  20. },
  21. "keywords": [
  22. "manipulation",
  23. "alteration"
  24. ],
  25. "dependencies": {
  26. "stream-utils": "*",
  27. "es6-shim": "*",
  28. "sift": "*"
  29. },
  30. "devDependencies": {
  31. "mocha": "*",
  32. "jshint": "*",
  33. "jscoverage": "*",
  34. "jscheckstyle": "git+https://github.com/RiveraGroup/jscheckstyle.git"
  35. },
  36. "license": "AGPL",
  37. "private": true,
  38. "engine": {
  39. "node": ">=0.8"
  40. },
  41. "config": {
  42. "test_syntax": true,
  43. "test_unit": true,
  44. "test_coverage": true
  45. }
  46. }