package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "munge",
  3. "version": "0.4.2+2013.02.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": "./munge.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. },
  29. "devDependencies": {
  30. "mocha": "*",
  31. "jshint": "*",
  32. "visionmedia-jscoverage": "*",
  33. "jscheckstyle": "git+https://github.com/RiveraGroup/jscheckstyle.git"
  34. },
  35. "license": "AGPL",
  36. "private": true,
  37. "engine": {
  38. "node": ">=0.8"
  39. },
  40. "config": {
  41. "test_syntax": false,
  42. "test_unit": false,
  43. "test_coverage": false
  44. }
  45. }