{
  "manifest": {
    "name": "function.prototype.name",
    "version": "1.1.6",
    "author": {
      "name": "Jordan Harband",
      "email": "ljharb@gmail.com"
    },
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "description": "An ES2015 spec-compliant `Function.prototype.name` shim",
    "license": "MIT",
    "main": "index.js",
    "scripts": {
      "prepack": "npmignore --auto --commentLines=autogenerated",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "prepublishOnly": "safe-publish-latest",
      "pretest": "npm run lint",
      "test": "npm run --silent tests-only",
      "posttest": "aud --production",
      "tests-only": "nyc tape 'test/**/*.js'",
      "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
      "lint": "eslint --ext=js,mjs .",
      "postlint": "es-shim-api --bound",
      "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://github.com/es-shims/Function.prototype.name.git"
    },
    "keywords": [
      "Function.prototype.name",
      "function",
      "name",
      "ES6",
      "ES2015",
      "shim",
      "polyfill",
      "es-shim API"
    ],
    "dependencies": {
      "call-bind": "^1.0.2",
      "define-properties": "^1.2.0",
      "es-abstract": "^1.22.1",
      "functions-have-names": "^1.2.3"
    },
    "devDependencies": {
      "@es-shims/api": "^2.4.2",
      "@ljharb/eslint-config": "^21.1.0",
      "aud": "^2.0.3",
      "auto-changelog": "^2.4.0",
      "eclint": "^2.8.1",
      "eslint": "=8.8.0",
      "for-each": "^0.3.3",
      "has-strict-mode": "^1.0.1",
      "in-publish": "^2.0.1",
      "make-arrow-function": "^1.2.0",
      "make-async-function": "^1.0.0",
      "make-generator-function": "^2.0.0",
      "npmignore": "^0.3.0",
      "nyc": "^10.3.2",
      "safe-publish-latest": "^2.0.0",
      "tape": "^5.6.6",
      "uglify-register": "^1.0.1"
    },
    "testling": {
      "files": "test/index.js",
      "browsers": [
        "iexplore/9.0..latest",
        "firefox/4.0..6.0",
        "firefox/15.0..latest",
        "firefox/nightly",
        "chrome/4.0..10.0",
        "chrome/20.0..latest",
        "chrome/canary",
        "opera/11.6..latest",
        "opera/next",
        "safari/5.0..latest",
        "ipad/6.0..latest",
        "iphone/6.0..latest",
        "android-browser/4.2"
      ]
    },
    "engines": {
      "node": ">= 0.4"
    },
    "auto-changelog": {
      "output": "CHANGELOG.md",
      "template": "keepachangelog",
      "unreleased": false,
      "commitLimit": false,
      "backfillLimit": false,
      "hideCredit": true,
      "startingVersion": "v1.1.6"
    },
    "publishConfig": {
      "ignore": [
        ".github/workflows"
      ]
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-function-prototype-name-1.1.6-cdf315b7d90ee77a4c6ee216c3c3362da07533fd-integrity/node_modules/function.prototype.name/package.json",
    "readmeFilename": "README.md",
    "readme": "# function.prototype.name <sup>[![Version Badge][2]][1]</sup>\n\n[![dependency status][5]][6]\n[![dev dependency status][7]][8]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][11]][1]\n\nAn ES2015 spec-compliant `Function.prototype.name` shim. Invoke its \"shim\" method to shim Function.prototype.name if it is unavailable.\n*Note*: `Function#name` requires a true ES5 environment - specifically, one with ES5 getters.\n\nThis package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES5-supported environment and complies with the [spec](https://www.ecma-international.org/ecma-262/6.0/#sec-get-regexp.prototype.flags).\n\nMost common usage:\n\n## Example\n\n```js\nvar functionName = require('function.prototype.name');\nvar assert = require('assert');\n\nassert.equal(functionName(function foo() {}), 'foo');\n\nfunctionName.shim();\nassert.equal(function foo() {}.name, 'foo');\n```\n\n## Supported engines\nAutomatically tested in every minor version of node.\n\nManually tested in:\n  - Safari: v4 - v15 <sub>(4, 5, 5.1, 6.0.5, 6.2, 7.1, 8, 9.1.3, 10.1.2, 11.1.2, 12.1, 13.1.2, 14.1.2, 15.3, 15.6.1)</sub>\n  - Chrome: v15 - v81, v83 - v106<sub>(every integer version)</sub>\n    - Note: This includes Edge v80+ and Opera v15+, which matches Chrome\n  - Firefox: v3, v3.6, v4 - v105 <sub>(every integer version)</sub>\n    - Note: in v42 - v63, `Function.prototype.toString` throws on HTML element constructors, or a Proxy to a function\n    - Note: in v20 - v35, HTML element constructors are not callable, despite having typeof `function`\n  - IE: v6 - v11<sub>(every integer version</sub>\n  - Opera: v11.1, v11.5, v11.6, v12.0, v12.1, v12.14, v12.15, v12.16, v15+ <sub>v15+ matches Chrome</sub>\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/function.prototype.name\n[2]: https://versionbadg.es/es-shims/Function.prototype.name.svg\n[5]: https://david-dm.org/es-shims/Function.prototype.name.svg\n[6]: https://david-dm.org/es-shims/Function.prototype.name\n[7]: https://david-dm.org/es-shims/Function.prototype.name/dev-status.svg\n[8]: https://david-dm.org/es-shims/Function.prototype.name#info=devDependencies\n[11]: https://nodei.co/npm/function.prototype.name.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/function.prototype.name.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/function.prototype.name.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=function.prototype.name\n",
    "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2016 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/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz",
    "hash": "cdf315b7d90ee77a4c6ee216c3c3362da07533fd",
    "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==",
    "registry": "npm",
    "packageName": "function.prototype.name",
    "cacheIntegrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== sha1-zfMVt9kO53pMbuIWw8M2LaB1M/0="
  },
  "registry": "npm",
  "hash": "cdf315b7d90ee77a4c6ee216c3c3362da07533fd"
}