{
  "manifest": {
    "name": "is-async-function",
    "version": "2.0.0",
    "description": "Determine if a function is a native async function.",
    "main": "index.js",
    "scripts": {
      "prepublishOnly": "safe-publish-latest",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "pretest": "npm run lint",
      "test": "npm run tests-only",
      "tests-only": "nyc npm run test:all",
      "test:all": "npm run test:index && npm run test:uglified",
      "test:index": "node test",
      "test:uglified": "node test/uglified",
      "posttest": "aud --production",
      "lint": "eslint --ext=js,mjs .",
      "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/inspect-js/is-async-function.git"
    },
    "keywords": [
      "async",
      "async function",
      "es6",
      "es2015",
      "yield",
      "function",
      "function*"
    ],
    "author": {
      "name": "Jordan Harband",
      "email": "ljharb@gmail.com"
    },
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "license": "MIT",
    "bugs": {
      "url": "https://github.com/inspect-js/is-async-function/issues"
    },
    "dependencies": {
      "has-tostringtag": "^1.0.0"
    },
    "devDependencies": {
      "@ljharb/eslint-config": "^21.0.0",
      "aud": "^2.0.0",
      "auto-changelog": "^2.4.0",
      "eslint": "=8.8.0",
      "in-publish": "^2.0.1",
      "make-async-function": "^1.0.0",
      "make-generator-function": "^2.0.0",
      "nyc": "^10.3.2",
      "safe-publish-latest": "^2.0.0",
      "tape": "^5.5.3",
      "uglify-register": "^1.0.1"
    },
    "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"
    },
    "auto-changelog": {
      "output": "CHANGELOG.md",
      "template": "keepachangelog",
      "unreleased": false,
      "commitLimit": false,
      "backfillLimit": false,
      "hideCredit": true
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-is-async-function-2.0.0-8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646-integrity/node_modules/is-async-function/package.json",
    "readmeFilename": "README.md",
    "readme": "# is-async-function <sup>[![Version Badge][2]][1]</sup>\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\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\nIs this a native `async function`?\n\n## Example\n\n```js\nvar isAsyncFunction = require('is-async-function');\nassert(!isAsyncFunction(function () {}));\nassert(!isAsyncFunction(null));\nassert(!isAsyncFunction(function* () { yield 42; return Infinity; }));\nassert(isAsyncFunction(async function () {}));\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/is-async-function\n[2]: https://versionbadg.es/inspect-js/is-async-function.svg\n[5]: https://david-dm.org/inspect-js/is-async-function.svg\n[6]: https://david-dm.org/inspect-js/is-async-function\n[7]: https://david-dm.org/inspect-js/is-async-function/dev-status.svg\n[8]: https://david-dm.org/inspect-js/is-async-function#info=devDependencies\n[11]: https://nodei.co/npm/is-async-function.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/is-async-function.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/is-async-function.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=is-async-function\n[codecov-image]: https://codecov.io/gh/inspect-js/is-async-function/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/inspect-js/is-async-function/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-async-function\n[actions-url]: https://github.com/inspect-js/is-async-function/actions\n",
    "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2021 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject 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, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz",
    "hash": "8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646",
    "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==",
    "registry": "npm",
    "packageName": "is-async-function",
    "cacheIntegrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== sha1-jkQY79Pl06brsBZMBe9a+2mqlkY="
  },
  "registry": "npm",
  "hash": "8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646"
}