| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | {  "name": "object.map",  "description": "Similar to map for arrays, this creates a new object by calling the callback on each property of the original object.",  "version": "1.0.1",  "homepage": "https://github.com/jonschlinkert/object.map",  "author": "Jon Schlinkert (https://github.com/jonschlinkert)",  "contributors": [    "Blaine Bublitz (https://twitter.com/BlaineBublitz)",    "Brian Woodward (https://twitter.com/doowb)",    "Jon Schlinkert (http://twitter.com/jonschlinkert)"  ],  "repository": "jonschlinkert/object.map",  "bugs": {    "url": "https://github.com/jonschlinkert/object.map/issues"  },  "license": "MIT",  "files": [    "index.js"  ],  "main": "index.js",  "engines": {    "node": ">=0.10.0"  },  "scripts": {    "test": "mocha"  },  "dependencies": {    "for-own": "^1.0.0",    "make-iterator": "^1.0.0"  },  "devDependencies": {    "gulp-format-md": "^0.1.11",    "mocha": "^3.2.0"  },  "keywords": [    "map",    "object"  ],  "verb": {    "toc": false,    "layout": "default",    "tasks": [      "readme"    ],    "plugins": [      "gulp-format-md"    ],    "related": {      "list": [        "arr-map",        "array-each",        "collection-map"      ]    },    "lint": {      "reflinks": true    }  }}
 |