package.json 1016 B

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