{
  "manifest": {
    "name": "es-shim-unscopables",
    "version": "1.0.2",
    "description": "Helper package to shim a method into `Array.prototype[Symbol.unscopables]`",
    "main": "index.js",
    "exports": {
      ".": "./index.js",
      "./package.json": "./package.json"
    },
    "scripts": {
      "prepack": "npmignore --auto --commentLines=autogenerated",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "prepublishOnly": "safe-publish-latest",
      "prelint-disabled": "evalmd README.md",
      "lint": "eslint --ext=.js,.mjs .",
      "pretest": "npm run lint",
      "tests-only": "nyc tape 'test/**/*.js'",
      "test": "npm run tests-only",
      "posttest": "aud --production",
      "version": "auto-changelog && git add CHANGELOG.md",
      "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
    },
    "repository": {
      "type": "git",
      "url": "git+https://github.com/ljharb/es-shim-unscopables.git"
    },
    "author": {
      "name": "Jordan Harband",
      "email": "ljharb@gmail.com"
    },
    "license": "MIT",
    "bugs": {
      "url": "https://github.com/ljharb/es-shim-unscopables/issues"
    },
    "homepage": "https://github.com/ljharb/es-shim-unscopables#readme",
    "devDependencies": {
      "@ljharb/eslint-config": "^21.1.0",
      "aud": "^2.0.3",
      "auto-changelog": "^2.4.0",
      "es-value-fixtures": "^1.4.2",
      "eslint": "=8.8.0",
      "evalmd": "^0.0.19",
      "for-each": "^0.3.3",
      "in-publish": "^2.0.1",
      "npmignore": "^0.3.0",
      "nyc": "^10.3.2",
      "object-inspect": "^1.13.1",
      "safe-publish-latest": "^2.0.0",
      "tape": "^5.7.2"
    },
    "dependencies": {
      "hasown": "^2.0.0"
    },
    "publishConfig": {
      "ignore": [
        ".github/workflows"
      ]
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-es-shim-unscopables-1.0.2-1f6942e71ecc7835ed1c8a83006d8771a63a3763-integrity/node_modules/es-shim-unscopables/package.json",
    "readmeFilename": "README.md",
    "readme": "# es-shim-unscopables <sup>[![Version Badge][npm-version-svg]][package-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]][package-url]\n\nHelper package to shim a method into `Array.prototype[Symbol.unscopables]`\n\n## Example\n\n```js\nconst assert = require('assert');\n\nconst shimUnscopables = require('es-shim-unscopables');\n\nlet copyWithin;\nlet concat;\nwith ([]) {\n    assert.equal(concat, Array.prototype.concat);\n    assert.notEqual(copyWithin, Array.prototype.copyWithin);\n}\n\nshimUnscopables('concat');\n\nwith ([]) {\n    assert.notEqual(concat, Array.prototype.concat);\n    assert.notEqual(copyWithin, Array.prototype.copyWithin);\n}\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n## Security\n\nPlease email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report.\n\n[package-url]: https://npmjs.org/package/es-shim-unscopables\n[npm-version-svg]: https://versionbadg.es/ljharb/es-shim-unscopables.svg\n[deps-svg]: https://david-dm.org/ljharb/es-shim-unscopables.svg\n[deps-url]: https://david-dm.org/ljharb/es-shim-unscopables\n[dev-deps-svg]: https://david-dm.org/ljharb/es-shim-unscopables/dev-status.svg\n[dev-deps-url]: https://david-dm.org/ljharb/es-shim-unscopables#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/es-shim-unscopables.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/es-shim-unscopables.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/es-shim-unscopables.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=es-shim-unscopables\n[codecov-image]: https://codecov.io/gh/ljharb/es-shim-unscopables/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/ljharb/es-shim-unscopables/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/es-shim-unscopables\n[actions-url]: https://github.com/ljharb/es-shim-unscopables/actions\n",
    "licenseText": "MIT License\n\nCopyright (c) 2022 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.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz",
    "hash": "1f6942e71ecc7835ed1c8a83006d8771a63a3763",
    "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==",
    "registry": "npm",
    "packageName": "es-shim-unscopables",
    "cacheIntegrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== sha1-H2lC5x7MeDXtHIqDAG2HcaY6N2M="
  },
  "registry": "npm",
  "hash": "1f6942e71ecc7835ed1c8a83006d8771a63a3763"
}