vs/v5.5.0/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/xtend/package.json
{
"name": "xtend", "version": "4.0.0", "description": "extend like a boss", "keywords": [ "extend", "merge", "options", "opts", "object", "array" ], "author": { "name": "Raynos", "email": "raynos2@gmail.com" }, "repository": { "type": "git", "url": "git://github.com/Raynos/xtend.git" }, "main": "immutable", "scripts": { "test": "node test" }, "dependencies": {}, "devDependencies": { "tape": "~1.1.0" }, "homepage": "https://github.com/Raynos/xtend", "contributors": [ { "name": "Jake Verbaten" }, { "name": "Matt Esch" } ], "bugs": { "url": "https://github.com/Raynos/xtend/issues", "email": "raynos2@gmail.com" }, "licenses": [ { "type": "MIT", "url": "http://github.com/raynos/xtend/raw/master/LICENSE" } ], "testling": { "files": "test.js", "browsers": [ "ie/7..latest", "firefox/16..latest", "firefox/nightly", "chrome/22..latest", "chrome/canary", "opera/12..latest", "opera/next", "safari/5.1..latest", "ipad/6.0..latest", "iphone/6.0..latest" ] }, "engines": { "node": ">=0.4" }, "readme": "# xtend\n\n[![browser support][3]][4]\n\n[](http://github.com/badges/stability-badges)\n\nExtend like a boss\n\nxtend is a basic utility library which allows you to extend an object by appending all of the properties from each object in a list. When there are identical properties, the right-most property takes precedence.\n\n## Examples\n\n```js\nvar extend = require(\"xtend\")\n\n// extend returns a new object. Does not mutate arguments\nvar combination = extend({\n a: \"a\",\n b: 'c'\n}, {\n b: \"b\"\n})\n// { a: \"a\", b: \"b\" }\n```\n\n## Stability status: Locked\n\n## MIT Licenced\n\n\n [3]: http://ci.testling.com/Raynos/xtend.png\n [4]: http://ci.testling.com/Raynos/xtend\n", "readmeFilename": "README.md", "_id": "xtend@4.0.0", "_shasum": "8bc36ff87aedbe7ce9eaf0bca36b2354a743840f", "_resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.0.tgz", "_from": "xtend@>=4.0.0 <5.0.0" } |