{
  "manifest": {
    "name": "is-number-object",
    "version": "1.0.7",
    "author": {
      "name": "Jordan Harband",
      "email": "ljharb@gmail.com"
    },
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "description": "Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
    "main": "index.js",
    "scripts": {
      "prepublishOnly": "safe-publish-latest",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "pretest": "npm run lint",
      "tests-only": "nyc tape 'test/**/*.js'",
      "test:corejs": "nyc tape test-corejs.js",
      "test": "npm run tests-only && npm run test:corejs",
      "posttest": "aud --production",
      "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
      "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-number-object.git"
    },
    "keywords": [
      "Number",
      "ES6",
      "toStringTag",
      "@@toStringTag",
      "Number object"
    ],
    "license": "MIT",
    "bugs": {
      "url": "https://github.com/inspect-js/is-number-object/issues"
    },
    "homepage": "https://github.com/inspect-js/is-number-object#readme",
    "devDependencies": {
      "@ljharb/eslint-config": "^20.2.3",
      "aud": "^2.0.0",
      "auto-changelog": "^2.4.0",
      "core-js": "^3.21.1",
      "eclint": "^2.8.1",
      "eslint": "=8.8.0",
      "foreach": "^2.0.5",
      "indexof": "^0.0.1",
      "is": "^3.3.0",
      "nyc": "^10.3.2",
      "safe-publish-latest": "^2.0.0",
      "tape": "^5.5.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"
    },
    "auto-changelog": {
      "output": "CHANGELOG.md",
      "template": "keepachangelog",
      "unreleased": false,
      "commitLimit": false,
      "backfillLimit": false,
      "hideCredit": true
    },
    "dependencies": {
      "has-tostringtag": "^1.0.0"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-is-number-object-1.0.7-59d50ada4c45251784e9904f5246c742f07a42fc-integrity/node_modules/is-number-object/package.json",
    "readmeFilename": "README.md",
    "readme": "# is-number-object <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 value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.\n\n## Example\n\n```js\nvar isNumber = require('is-number-object');\nvar assert = require('assert');\n\nassert.notOk(isNumber(undefined));\nassert.notOk(isNumber(null));\nassert.notOk(isNumber(false));\nassert.notOk(isNumber(true));\nassert.notOk(isNumber('foo'));\nassert.notOk(isNumber(function () {}));\nassert.notOk(isNumber([]));\nassert.notOk(isNumber({}));\nassert.notOk(isNumber(/a/g));\nassert.notOk(isNumber(new RegExp('a', 'g')));\nassert.notOk(isNumber(new Date()));\n\nassert.ok(isNumber(42));\nassert.ok(isNumber(NaN));\nassert.ok(isNumber(Infinity));\nassert.ok(isNumber(new Number(42)));\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/is-number-object\n[2]: https://versionbadg.es/inspect-js/is-number-object.svg\n[5]: https://david-dm.org/inspect-js/is-number-object.svg\n[6]: https://david-dm.org/inspect-js/is-number-object\n[7]: https://david-dm.org/inspect-js/is-number-object/dev-status.svg\n[8]: https://david-dm.org/inspect-js/is-number-object#info=devDependencies\n[11]: https://nodei.co/npm/is-number-object.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/is-number-object.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/is-number-object.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=is-number-object\n[codecov-image]: https://codecov.io/gh/inspect-js/is-number-object/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/inspect-js/is-number-object/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-number-object\n[actions-url]: https://github.com/inspect-js/is-number-object/actions\n",
    "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2015 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\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz",
    "hash": "59d50ada4c45251784e9904f5246c742f07a42fc",
    "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
    "registry": "npm",
    "packageName": "is-number-object",
    "cacheIntegrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== sha1-WdUK2kxFJReE6ZBPUkbHQvB6Qvw="
  },
  "registry": "npm",
  "hash": "59d50ada4c45251784e9904f5246c742f07a42fc"
}