package.json 1007 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "object.reduce",
  3. "description": "Reduces an object to a value that is the accumulated result of running each property in the object through a callback.",
  4. "version": "1.0.1",
  5. "homepage": "https://github.com/jonschlinkert/object.reduce",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/object.reduce",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/object.reduce/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "keywords": [
  23. "object",
  24. "reduce"
  25. ],
  26. "dependencies": {
  27. "for-own": "^1.0.0",
  28. "make-iterator": "^1.0.0"
  29. },
  30. "devDependencies": {
  31. "gulp-format-md": "^0.1.11",
  32. "mocha": "^3.2.0"
  33. },
  34. "verb": {
  35. "toc": false,
  36. "layout": "default",
  37. "tasks": [
  38. "readme"
  39. ],
  40. "plugins": [
  41. "gulp-format-md"
  42. ],
  43. "lint": {
  44. "reflinks": true
  45. }
  46. }
  47. }