{
  "name": "reduce-object",
  "description": "Reduces an object to a value that is the accumulated result of running each property in the object through a callback. Executes the callback function once for each own enumerable property in the object, receiving four arguments: the initial value (or value from the previous callback call), the `value` of the current property, the `key` of the current property, and the `object` over which the function is iterating. Node.js/JavaScript utility.",
  "version": "0.1.3",
  "homepage": "https://github.com/jonschlinkert/reduce-object",
  "author": {
    "name": "Jon Schlinkert",
    "url": "https://github.com/jonschlinkert"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/jonschlinkert/reduce-object.git"
  },
  "bugs": {
    "url": "https://github.com/jonschlinkert/reduce-object/issues"
  },
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/jonschlinkert/reduce-object/blob/master/LICENSE-MIT"
    }
  ],
  "main": "index.js",
  "engines": {
    "node": ">=0.10.0"
  },
  "scripts": {
    "test": "mocha -R spec"
  },
  "devDependencies": {
    "mocha": "*",
    "should": "^4.0.4"
  },
  "keywords": [
    "accumulate",
    "accumulator",
    "callback",
    "cb",
    "find",
    "for-in",
    "for-own",
    "has",
    "has-own",
    "hasOwn",
    "index",
    "iterate",
    "iterator",
    "javascript",
    "js",
    "key",
    "keys",
    "loop",
    "node.js",
    "object",
    "own",
    "prop",
    "properties",
    "property",
    "reduce",
    "util",
    "utilities",
    "utility",
    "utils",
    "value"
  ],
  "dependencies": {
    "for-own": "^0.1.1"
  }
}