{
  "manifest": {
    "name": "object.assign",
    "version": "4.1.5",
    "author": {
      "name": "Jordan Harband"
    },
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "description": "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim",
    "license": "MIT",
    "main": "index.js",
    "scripts": {
      "prepack": "npmignore --auto --commentLines=autogenerated",
      "pretest": "npm run lint && es-shim-api --bound",
      "test": "npm run tests-only && npm run test:ses",
      "posttest": "aud --production",
      "tests-only": "npm run test:implementation && npm run test:shim",
      "test:native": "nyc node test/native",
      "test:shim": "nyc node test/shimmed",
      "test:implementation": "nyc node test",
      "test:ses": "node test/ses-compat",
      "lint": "eslint .",
      "build": "mkdir -p dist && browserify browserShim.js > dist/browser.js",
      "prepublishOnly": "safe-publish-latest && npm run build",
      "prepublish": "not-in-publish || npm run prepublishOnly"
    },
    "repository": {
      "type": "git",
      "url": "git://github.com/ljharb/object.assign.git"
    },
    "keywords": [
      "Object.assign",
      "assign",
      "ES6",
      "extend",
      "$.extend",
      "jQuery",
      "_.extend",
      "Underscore",
      "es-shim API",
      "polyfill",
      "shim"
    ],
    "dependencies": {
      "call-bind": "^1.0.5",
      "define-properties": "^1.2.1",
      "has-symbols": "^1.0.3",
      "object-keys": "^1.1.1"
    },
    "devDependencies": {
      "@es-shims/api": "^2.4.2",
      "@ljharb/eslint-config": "^21.1.0",
      "aud": "^2.0.3",
      "browserify": "^16.5.2",
      "eslint": "=8.8.0",
      "for-each": "^0.3.3",
      "functions-have-names": "^1.2.3",
      "has-strict-mode": "^1.0.1",
      "hasown": "^2.0.0",
      "is": "^3.3.0",
      "mock-property": "^1.0.3",
      "npmignore": "^0.3.1",
      "nyc": "^10.3.2",
      "safe-publish-latest": "^2.0.0",
      "ses": "^0.11.1",
      "tape": "^5.7.2"
    },
    "testling": {
      "files": "test/index.js",
      "browsers": [
        "iexplore/6.0..latest",
        "firefox/3.0..6.0",
        "firefox/15.0..latest",
        "firefox/nightly",
        "chrome/4.0..10.0",
        "chrome/20.0..latest",
        "chrome/canary",
        "opera/10.0..latest",
        "opera/next",
        "safari/4.0..latest",
        "ipad/6.0..latest",
        "iphone/6.0..latest",
        "android-browser/4.2"
      ]
    },
    "engines": {
      "node": ">= 0.4"
    },
    "publishConfig": {
      "ignore": [
        ".github/workflows",
        "bower.json",
        "browserShim.js",
        "!dist/"
      ]
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-object-assign-4.1.5-3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0-integrity/node_modules/object.assign/package.json",
    "readmeFilename": "README.md",
    "readme": "# object.assign <sup>[![Version Badge][npm-version-svg]][npm-url]</sup>\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![dependency status][deps-svg]][deps-url]\n[![dev dependency status][dev-deps-svg]][dev-deps-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][npm-url]\n\nAn Object.assign shim. Invoke its \"shim\" method to shim Object.assign if it is unavailable.\n\nThis package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the [spec](http://www.ecma-international.org/ecma-262/6.0/#sec-object.assign). In an ES6 environment, it will also work properly with `Symbol`s.\n\nTakes a minimum of 2 arguments: `target` and `source`.\nTakes a variable sized list of source arguments - at least 1, as many as you want.\nThrows a TypeError if the `target` argument is `null` or `undefined`.\n\nMost common usage:\n```js\nvar assign = require('object.assign').getPolyfill(); // returns native method if compliant\n\t/* or */\nvar assign = require('object.assign/polyfill')(); // returns native method if compliant\n```\n\n## Example\n\n```js\nvar assert = require('assert');\n\n// Multiple sources!\nvar target = { a: true };\nvar source1 = { b: true };\nvar source2 = { c: true };\nvar sourceN = { n: true };\n\nvar expected = {\n\ta: true,\n\tb: true,\n\tc: true,\n\tn: true\n};\n\nassign(target, source1, source2, sourceN);\nassert.deepEqual(target, expected); // AWESOME!\n```\n\n```js\nvar target = {\n\ta: true,\n\tb: true,\n\tc: true\n};\nvar source1 = {\n\tc: false,\n\td: false\n};\nvar sourceN = {\n\te: false\n};\n\nvar assigned = assign(target, source1, sourceN);\nassert.equal(target, assigned); // returns the target object\nassert.deepEqual(assigned, {\n\ta: true,\n\tb: true,\n\tc: false,\n\td: false,\n\te: false\n});\n```\n\n```js\n/* when Object.assign is not present */\ndelete Object.assign;\nvar shimmedAssign = require('object.assign').shim();\n\t/* or */\nvar shimmedAssign = require('object.assign/shim')();\n\nassert.equal(shimmedAssign, assign);\n\nvar target = {\n\ta: true,\n\tb: true,\n\tc: true\n};\nvar source = {\n\tc: false,\n\td: false,\n\te: false\n};\n\nvar assigned = assign(target, source);\nassert.deepEqual(Object.assign(target, source), assign(target, source));\n```\n\n```js\n/* when Object.assign is present */\nvar shimmedAssign = require('object.assign').shim();\nassert.equal(shimmedAssign, Object.assign);\n\nvar target = {\n\ta: true,\n\tb: true,\n\tc: true\n};\nvar source = {\n\tc: false,\n\td: false,\n\te: false\n};\n\nassert.deepEqual(Object.assign(target, source), assign(target, source));\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[npm-url]: https://npmjs.org/package/object.assign\n[npm-version-svg]: http://versionbadg.es/ljharb/object.assign.svg\n[travis-svg]: https://travis-ci.org/ljharb/object.assign.svg\n[travis-url]: https://travis-ci.org/ljharb/object.assign\n[deps-svg]: https://david-dm.org/ljharb/object.assign.svg?theme=shields.io\n[deps-url]: https://david-dm.org/ljharb/object.assign\n[dev-deps-svg]: https://david-dm.org/ljharb/object.assign/dev-status.svg?theme=shields.io\n[dev-deps-url]: https://david-dm.org/ljharb/object.assign#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/object.assign.png?downloads=true&stars=true\n[license-image]: http://img.shields.io/npm/l/object.assign.svg\n[license-url]: LICENSE\n[downloads-image]: http://img.shields.io/npm/dm/object.assign.svg\n[downloads-url]: http://npm-stat.com/charts.html?package=object.assign\n[codecov-image]: https://codecov.io/gh/ljharb/object.assign/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/ljharb/object.assign/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/object.assign\n[actions-url]: https://github.com/ljharb/object.assign/actions\n",
    "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz",
    "hash": "3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0",
    "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==",
    "registry": "npm",
    "packageName": "object.assign",
    "cacheIntegrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== sha1-OoM/mrf9uA/J6NIwDIA9IW2P27A="
  },
  "registry": "npm",
  "hash": "3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0"
}