{
  "manifest": {
    "name": "object-inspect",
    "version": "1.13.1",
    "description": "string representations of objects in node and the browser",
    "main": "index.js",
    "sideEffects": false,
    "devDependencies": {
      "@ljharb/eslint-config": "^21.1.0",
      "@pkgjs/support": "^0.0.6",
      "auto-changelog": "^2.4.0",
      "core-js": "^2.6.12",
      "error-cause": "^1.0.6",
      "es-value-fixtures": "^1.4.2",
      "eslint": "=8.8.0",
      "for-each": "^0.3.3",
      "functions-have-names": "^1.2.3",
      "glob": "=10.3.7",
      "globalthis": "^1.0.3",
      "has-tostringtag": "^1.0.0",
      "in-publish": "^2.0.1",
      "jackspeak": "=2.1.1",
      "make-arrow-function": "^1.2.0",
      "mock-property": "^1.0.2",
      "npmignore": "^0.3.0",
      "nyc": "^10.3.2",
      "safe-publish-latest": "^2.0.0",
      "string.prototype.repeat": "^1.0.0",
      "tape": "^5.7.1"
    },
    "scripts": {
      "prepack": "npmignore --auto --commentLines=autogenerated",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "prepublishOnly": "safe-publish-latest",
      "pretest": "npm run lint",
      "lint": "eslint --ext=js,mjs .",
      "postlint": "npx @pkgjs/support validate",
      "test": "npm run tests-only && npm run test:corejs",
      "tests-only": "nyc tape 'test/*.js'",
      "test:corejs": "nyc tape test-core-js.js 'test/*.js'",
      "posttest": "npx 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)\")\""
    },
    "testling": {
      "files": [
        "test/*.js",
        "test/browser/*.js"
      ],
      "browsers": [
        "ie/6..latest",
        "chrome/latest",
        "firefox/latest",
        "safari/latest",
        "opera/latest",
        "iphone/latest",
        "ipad/latest",
        "android/latest"
      ]
    },
    "repository": {
      "type": "git",
      "url": "git://github.com/inspect-js/object-inspect.git"
    },
    "homepage": "https://github.com/inspect-js/object-inspect",
    "keywords": [
      "inspect",
      "util.inspect",
      "object",
      "stringify",
      "pretty"
    ],
    "author": {
      "name": "James Halliday",
      "email": "mail@substack.net",
      "url": "http://substack.net"
    },
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "license": "MIT",
    "browser": {
      "./util.inspect.js": false
    },
    "auto-changelog": {
      "output": "CHANGELOG.md",
      "template": "keepachangelog",
      "unreleased": false,
      "commitLimit": false,
      "backfillLimit": false,
      "hideCredit": true
    },
    "publishConfig": {
      "ignore": [
        ".github/workflows",
        "./test-core-js.js"
      ]
    },
    "support": true,
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-object-inspect-1.13.1-b96c6109324ccfef6b12216a956ca4dc2ff94bc2-integrity/node_modules/object-inspect/package.json",
    "readmeFilename": "readme.markdown",
    "readme": "# object-inspect <sup>[![Version Badge][2]][1]</sup>\n\nstring representations of objects in node and the browser\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\n# example\n\n## circular\n\n``` js\nvar inspect = require('object-inspect');\nvar obj = { a: 1, b: [3,4] };\nobj.c = obj;\nconsole.log(inspect(obj));\n```\n\n## dom element\n\n``` js\nvar inspect = require('object-inspect');\n\nvar d = document.createElement('div');\nd.setAttribute('id', 'beep');\nd.innerHTML = '<b>wooo</b><i>iiiii</i>';\n\nconsole.log(inspect([ d, { a: 3, b : 4, c: [5,6,[7,[8,[9]]]] } ]));\n```\n\noutput:\n\n```\n[ <div id=\"beep\">...</div>, { a: 3, b: 4, c: [ 5, 6, [ 7, [ 8, [ ... ] ] ] ] } ]\n```\n\n# methods\n\n``` js\nvar inspect = require('object-inspect')\n```\n\n## var s = inspect(obj, opts={})\n\nReturn a string `s` with the string representation of `obj` up to a depth of `opts.depth`.\n\nAdditional options:\n  - `quoteStyle`: must be \"single\" or \"double\", if present. Default `'single'` for strings, `'double'` for HTML elements.\n  - `maxStringLength`: must be `0`, a positive integer, `Infinity`, or `null`, if present. Default `Infinity`.\n  - `customInspect`: When `true`, a custom inspect method function will be invoked (either undere the `util.inspect.custom` symbol, or the `inspect` property). When the string `'symbol'`, only the symbol method will be invoked. Default `true`.\n  - `indent`: must be \"\\t\", `null`, or a positive integer. Default `null`.\n  - `numericSeparator`: must be a boolean, if present. Default `false`. If `true`, all numbers will be printed with numeric separators (eg, `1234.5678` will be printed as `'1_234.567_8'`)\n\n# install\n\nWith [npm](https://npmjs.org) do:\n\n```\nnpm install object-inspect\n```\n\n# license\n\nMIT\n\n[1]: https://npmjs.org/package/object-inspect\n[2]: https://versionbadg.es/inspect-js/object-inspect.svg\n[5]: https://david-dm.org/inspect-js/object-inspect.svg\n[6]: https://david-dm.org/inspect-js/object-inspect\n[7]: https://david-dm.org/inspect-js/object-inspect/dev-status.svg\n[8]: https://david-dm.org/inspect-js/object-inspect#info=devDependencies\n[11]: https://nodei.co/npm/object-inspect.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/object-inspect.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/object-inspect.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=object-inspect\n[codecov-image]: https://codecov.io/gh/inspect-js/object-inspect/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/inspect-js/object-inspect/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/object-inspect\n[actions-url]: https://github.com/inspect-js/object-inspect/actions\n",
    "licenseText": "MIT License\n\nCopyright (c) 2013 James Halliday\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/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz",
    "hash": "b96c6109324ccfef6b12216a956ca4dc2ff94bc2",
    "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==",
    "registry": "npm",
    "packageName": "object-inspect",
    "cacheIntegrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== sha1-uWxhCTJMz+9rEiFqlWyk3C/5S8I="
  },
  "registry": "npm",
  "hash": "b96c6109324ccfef6b12216a956ca4dc2ff94bc2"
}