125 lines
4.4 KiB
JSON
125 lines
4.4 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "object-assign@^4.0.1",
|
|
"scope": null,
|
|
"escapedName": "object-assign",
|
|
"name": "object-assign",
|
|
"rawSpec": "^4.0.1",
|
|
"spec": ">=4.0.1 <5.0.0",
|
|
"type": "range"
|
|
},
|
|
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/mz"
|
|
]
|
|
],
|
|
"_from": "object-assign@>=4.0.1 <5.0.0",
|
|
"_id": "object-assign@4.1.1",
|
|
"_inCache": true,
|
|
"_location": "/object-assign",
|
|
"_nodeVersion": "4.6.2",
|
|
"_npmOperationalInternal": {
|
|
"host": "packages-12-west.internal.npmjs.com",
|
|
"tmp": "tmp/object-assign-4.1.1.tgz_1484580915042_0.07107710791751742"
|
|
},
|
|
"_npmUser": {
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
},
|
|
"_npmVersion": "2.15.11",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "object-assign@^4.0.1",
|
|
"scope": null,
|
|
"escapedName": "object-assign",
|
|
"name": "object-assign",
|
|
"rawSpec": "^4.0.1",
|
|
"spec": ">=4.0.1 <5.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/fbjs",
|
|
"/globby",
|
|
"/mz",
|
|
"/opn",
|
|
"/prop-types",
|
|
"/react"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
"_shasum": "2109adc7965887cfc05cbbd442cac8bfbb360863",
|
|
"_shrinkwrap": null,
|
|
"_spec": "object-assign@^4.0.1",
|
|
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/mz",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/object-assign/issues"
|
|
},
|
|
"dependencies": {},
|
|
"description": "ES2015 `Object.assign()` ponyfill",
|
|
"devDependencies": {
|
|
"ava": "^0.16.0",
|
|
"lodash": "^4.16.4",
|
|
"matcha": "^0.7.0",
|
|
"xo": "^0.16.0"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "2109adc7965887cfc05cbbd442cac8bfbb360863",
|
|
"tarball": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"gitHead": "a89774b252c91612203876984bbd6addbe3b5a0e",
|
|
"homepage": "https://github.com/sindresorhus/object-assign#readme",
|
|
"keywords": [
|
|
"object",
|
|
"assign",
|
|
"extend",
|
|
"properties",
|
|
"es2015",
|
|
"ecmascript",
|
|
"harmony",
|
|
"ponyfill",
|
|
"prollyfill",
|
|
"polyfill",
|
|
"shim",
|
|
"browser"
|
|
],
|
|
"license": "MIT",
|
|
"maintainers": [
|
|
{
|
|
"name": "gaearon",
|
|
"email": "dan.abramov@gmail.com"
|
|
},
|
|
{
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
},
|
|
{
|
|
"name": "spicyj",
|
|
"email": "ben@benalpert.com"
|
|
}
|
|
],
|
|
"name": "object-assign",
|
|
"optionalDependencies": {},
|
|
"readme": "# object-assign [![Build Status](https://travis-ci.org/sindresorhus/object-assign.svg?branch=master)](https://travis-ci.org/sindresorhus/object-assign)\n\n> ES2015 [`Object.assign()`](http://www.2ality.com/2014/01/object-assign.html) [ponyfill](https://ponyfill.com)\n\n\n## Use the built-in\n\nNode.js 4 and up, as well as every evergreen browser (Chrome, Edge, Firefox, Opera, Safari),\nsupport `Object.assign()` :tada:. If you target only those environments, then by all\nmeans, use `Object.assign()` instead of this package.\n\n\n## Install\n\n```\n$ npm install --save object-assign\n```\n\n\n## Usage\n\n```js\nconst objectAssign = require('object-assign');\n\nobjectAssign({foo: 0}, {bar: 1});\n//=> {foo: 0, bar: 1}\n\n// multiple sources\nobjectAssign({foo: 0}, {bar: 1}, {baz: 2});\n//=> {foo: 0, bar: 1, baz: 2}\n\n// overwrites equal keys\nobjectAssign({foo: 0}, {foo: 1}, {foo: 2});\n//=> {foo: 2}\n\n// ignores null and undefined sources\nobjectAssign({foo: 0}, null, {bar: 1}, undefined);\n//=> {foo: 0, bar: 1}\n```\n\n\n## API\n\n### objectAssign(target, [source, ...])\n\nAssigns enumerable own properties of `source` objects to the `target` object and returns the `target` object. Additional `source` objects will overwrite previous ones.\n\n\n## Resources\n\n- [ES2015 spec - Object.assign](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.assign)\n\n\n## Related\n\n- [deep-assign](https://github.com/sindresorhus/deep-assign) - Recursive `Object.assign()`\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sindresorhus/object-assign.git"
|
|
},
|
|
"scripts": {
|
|
"bench": "matcha bench.js",
|
|
"test": "xo && ava"
|
|
},
|
|
"version": "4.1.1"
|
|
}
|