{"_id":"object.entries","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"dist-tags":{"latest":"1.1.9"},"author":{"name":"Jordan Harband"},"description":"ES2017 spec-compliant Object.entries shim.","readme":"# object.entries <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\nAn ES2017 spec-compliant `Object.entries` shim. Invoke its \"shim\" method to shim `Object.entries` if it is unavailable or noncompliant.\n\nThis package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the [spec](https://tc39.github.io/ecma262/#sec-object.entries).\n\nMost common usage:\n```js\nvar assert = require('assert');\nvar entries = require('object.entries');\n\nvar obj = { a: 1, b: 2, c: 3 };\nvar expected = [['a', 1], ['b', 2], ['c', 3]];\n\nif (typeof Symbol === 'function' && typeof Symbol() === 'symbol') {\n\t// for environments with Symbol support\n\tvar sym = Symbol();\n\tobj[sym] = 4;\n\tobj.d = sym;\n\texpected.push(['d', sym]);\n}\n\nassert.deepEqual(entries(obj), expected);\n\nif (!Object.entries) {\n\tentries.shim();\n}\n\nassert.deepEqual(Object.entries(obj), expected);\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.com/package/object.entries\n[npm-version-svg]: https://versionbadg.es/es-shims/Object.entries.svg\n[deps-svg]: https://david-dm.org/es-shims/Object.entries.svg\n[deps-url]: https://david-dm.org/es-shims/Object.entries\n[dev-deps-svg]: https://david-dm.org/es-shims/Object.entries/dev-status.svg\n[dev-deps-url]: https://david-dm.org/es-shims/Object.entries#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/object.entries.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/object.entries.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/object.entries.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=object.entries\n[codecov-image]: https://codecov.io/gh/es-shims/Object.entries/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/es-shims/Object.entries/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/Object.entries\n[actions-url]: https://github.com/es-shims/Object.entries/actions\n","repository":{"type":"git","url":"git://github.com/es-shims/Object.entries.git"},"bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"license":"MIT","versions":{"1.0.3":{"name":"object.entries","version":"1.0.3","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.0.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"f42cc75363a4f9aa7037bcfb3bab3be4ffc78027","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.0.3.tgz","integrity":"sha512-rsEnH7bzYZ+DvFAu/FJyDS5fClaUK4UxyOutvJvfExdEwJLBXwkWsE8Y77TOnzFroemO52ooTcwulnpywu7thA==","signatures":[{"sig":"MEUCIBzSbKfwWbNOSKW+eU4rF+1I9pvceXNJtC/8LXAHUiuMAiEA4SQafIZUV/kRbnPJEJEAYe70UzqKhJVEuhhk6x+XO7M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f42cc75363a4f9aa7037bcfb3bab3be4ffc78027","engines":{"node":">= 0.4"},"gitHead":"6d7095f0933f377455bfbdaed732764a0accc30a","scripts":{"jscs":"jscs test/*.js *.js","lint":"npm run jscs && npm run eslint","test":"npm run lint && es-shim-api && npm run test:shimmed && npm run test:module && npm run security","eslint":"eslint test/*.js *.js","coverage":"covert test/*.js","security":"nsp package","test:module":"node test/index.js","test:shimmed":"node test/shimmed.js","coverage-quiet":"covert test/*.js --quiet"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"2.14.4","description":"ES7 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"4.1.2","dependencies":{"has":"^1.0.1","es-abstract":"^1.3.2","function-bind":"^1.0.2","define-properties":"^1.1.1"},"devDependencies":{"nsp":"^1.1.0","jscs":"^2.2.1","tape":"^4.2.1","covert":"^1.1.0","eslint":"^1.6.0","array-map":"^0.0.0","@es-shims/api":"^1.0.0","@ljharb/eslint-config":"^1.3.0"}},"1.1.2":{"name":"object.entries","version":"1.1.2","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.1.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"bc73f00acb6b6bb16c203434b10f9a7e797d3add","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.2.tgz","fileCount":17,"integrity":"sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==","signatures":[{"sig":"MEQCIAFbsLyfrGlFh6sQ/P7UNqQJJbchTW16lzF4du5IDfBrAiA33z1WjdFObjw+bH6L4I17QEyzJXgpV8WQhEXQomcEnw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexZ5pCRA9TVsSAnZWagAAgGoP/2Zsxn56fCBhsSzIHBFb\nLloA49TOZCNctCQyMDe6jSAIPBcfFqQ0FEy1DtHrxmA4FSTDRUQwkt5sl1Fh\n0GXDA/XZMEWKli9AjAR0nfxY6o1bwgey/GKE1HBrr74oZtCl0/dVblPQYsCV\ntH9DItOA0ZbodfowNqUivizi1WjgJa+EOUWElrkpwdkOkTN+kxxwv3OfkQTm\neQcvzih6/jYf9YOrcbR8vhBPK2fxKLYmmS7fbzIlHI4lSayYsyjV4SA5L3m6\nfRUMx5QueirUkp3pmBaC8oeOqyUDIumWh46y57ywxIPO46IPpk+CjOVOi4I4\nMJvpjcdaPqBF3epq7vudkxbCHqgIHGUVEyZU2lVkLSffknddnFhFnk0heXDq\noNDN8E1sAkgggBNQ8e1Q/rc0/S/iJzc94cKPVnndTr3Sv98xWgY4rPI/svnZ\nJkVFLIuhkGKeWKttw5HeoVoVMzICftzznzZanTiCUWwVMcx1BC9g+EHSyHqd\nGR7moDhPY7I7uxfvI7N63xhD7fT9ZVCOfLBGJiOinyt7o/FZbKtWjX/6aQWj\nT1/NmxWp8NVcb3cLtc3DFdbO3WtDMv0Omh/nJRglzXN0g1BYYuQmkU38m0gw\n8lZ4A6/NcGcVXQwvu7IdeWRMVbliSt/MNGqKYQOowxS2fDGhWVv+/kRZbqyO\nZ3oE\r\n=Myf1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"9470975d44901b38fa5f048b87b87d92fc5a2fb9","scripts":{"lint":"eslint .","test":"npm run --silent tests-only","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","coverage":"covert test/*.js","posttest":"npx aud --production","prepublish":"safe-publish-latest","preversion":"auto-changelog","tests-only":"es-shim-api --bound && npm run --silent test:shimmed && npm run --silent test:module","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","test:module":"node test/index","test:shimmed":"node test/shimmed"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"6.14.5","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"14.3.0","dependencies":{"has":"^1.0.3","es-abstract":"^1.17.5","define-properties":"^1.1.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.2","tape":"^5.0.0","covert":"^1.1.1","eslint":"^7.0.0","array-map":"^0.0.0","@es-shims/api":"^2.1.2","auto-changelog":"^2.0.0","safe-publish-latest":"^1.1.4","functions-have-names":"^1.2.1","@ljharb/eslint-config":"^17.1.0"},"_npmOperationalInternal":{"tmp":"tmp/object.entries_1.1.2_1590009449002_0.8468598982633726","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"object.entries","version":"1.0.4","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.0.4","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"1bf9a4dd2288f5b33f3a993d257661f05d161a5f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.0.4.tgz","integrity":"sha512-mGYNJ4IFu7v8qEya1mtMfOlOLE603v+UTSl7fL4yzoTwGXGnMBoxz6WZo0fbWY7PebTd+gdFqAtU4XmNaEHEVg==","signatures":[{"sig":"MEUCIQDKp3Th6Y2L06F/pGcUiRuV9ogNaqkLPBfZ7arS2A7zRwIgJA4wl8oJSRxffFWK4GpPaWkJESbvV1xsXcHPPgc7a5s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1bf9a4dd2288f5b33f3a993d257661f05d161a5f","engines":{"node":">= 0.4"},"gitHead":"1af879bb26ebff8218b6cbb5c7246a2617a44c8b","scripts":{"jscs":"jscs test/*.js *.js","lint":"npm run --silent jscs && npm run --silent eslint","test":"npm run --silent tests-only","eslint":"eslint test/*.js *.js","pretest":"npm run --silent lint","coverage":"covert test/*.js","posttest":"npm run --silent security","security":"nsp check","tests-only":"es-shim-api && npm run --silent test:shimmed && npm run --silent test:module","test:module":"node test/index.js","test:shimmed":"node test/shimmed.js","coverage-quiet":"covert test/*.js --quiet"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"3.10.9","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"7.2.0","dependencies":{"has":"^1.0.1","es-abstract":"^1.6.1","function-bind":"^1.1.0","define-properties":"^1.1.2"},"devDependencies":{"nsp":"^2.6.2","jscs":"^3.0.7","tape":"^4.6.3","covert":"^1.1.0","eslint":"^3.11.1","array-map":"^0.0.0","@es-shims/api":"^1.2.0","@ljharb/eslint-config":"^9.0.1"},"_npmOperationalInternal":{"tmp":"tmp/object.entries-1.0.4.tgz_1480845325242_0.4738461736124009","host":"packages-12-west.internal.npmjs.com"}},"1.1.3":{"name":"object.entries","version":"1.1.3","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.1.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"c601c7f168b62374541a07ddbd3e2d5e4f7711a6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.3.tgz","fileCount":24,"integrity":"sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==","signatures":[{"sig":"MEUCIQC1KGuEfkBdelRvdJK0JIDXXr2Czvg2gFOpe8pc4YefcgIgNQ4WNEKgNBAh2YTGF91oGErfjkrmpBZyE3yNlB7smA8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31454,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfwCv/CRA9TVsSAnZWagAAORYP/3bRHTHFVDVZbBjiJZpf\n4LkzOLkM67t5SLGV0MAgfqiSqoTWZVeHcSIMpuUP9XBt8HLXzmapkUBSGZip\nJOEVdfIyOCDEYKFZTyRRO4s0bWbAFZiY9yZXjFzCWgspWUWPXkUG2PTeMw2U\n8Ry7q1B4EpX7aWDUiRPJPaMC9eg6HgpEeSmPrkvWI82YQGhvKjmohhMFTVBh\nMhim3TOg55IpEiVM8NyZ6VMdn+Lr9sjdrqgjCMSiCtZciWVcu8LwKfVs+p1u\nkKLV2iIM2LPeimZlbMINKmerdv3kQExcYCP2yavPR+BK6SVTkxtu3G5J3b94\nCoz7BI0Wj+GbTHHbXRzh/b1uU4QTDO9k/Ny9jIFu7SNTyWLAg5Na9aa3nuGU\nC9CXl1reMUyqAkRNrQiskMQ0RCOGtpNG+jDOOQHcEd/km8ykUevOlEe+I24D\n7KmCZy342LCBomB5cHnAV6DXWQHbi2tLV4mxX7dKdtnugAQrK1ZTahmWRRTj\nKijmJsnVv3QkFWA5Pb0g5TSeJ3geyJqYup/NVmsxoYozeGOwVR+snov0jwqF\n3WZMpfYZ5fugv7It8siISQ6GohWbKhMfaxywlsKyUuOa8glfBgJvR0iUXQzV\nP8DqhRj3ThqtTjtr9m+08aQSqeWAgPbOrZ2Tiqk5IYJMi1YBjdhSAEsyQa3K\nFuvC\r\n=PeZO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"925a0b0b52e041419f07bcd14d82523a186baf1e","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"es-shim-api --bound","posttest":"npx aud --production","prepublish":"safe-publish-latest","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"6.14.8","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"14.15.1","dependencies":{"has":"^1.0.3","call-bind":"^1.0.0","es-abstract":"^1.18.0-next.1","define-properties":"^1.1.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.3","nyc":"^10.3.2","tape":"^5.0.1","eslint":"^7.14.0","array-map":"^0.0.0","@es-shims/api":"^2.1.2","auto-changelog":"^2.2.1","has-strict-mode":"^1.0.0","safe-publish-latest":"^1.1.4","functions-have-names":"^1.2.1","@ljharb/eslint-config":"^17.3.0"},"_npmOperationalInternal":{"tmp":"tmp/object.entries_1.1.3_1606429695178_0.8227295874669036","host":"s3://npm-registry-packages"}},"1.1.4":{"name":"object.entries","version":"1.1.4","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.1.4","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"43ccf9a50bc5fd5b649d45ab1a579f24e088cafd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.4.tgz","fileCount":19,"integrity":"sha512-h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==","signatures":[{"sig":"MEQCIDgLNOnJjrnKA9dXN9K7ZNVywIqK5Xu5KCwDgmroxT8SAiBmghgGm0ePAGHcgowDGpJh+2ebu74wH1CYO/GbCOfUSA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29273,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgrtS+CRA9TVsSAnZWagAA3UUP/RZsQi8UrsLjAXE8qZOh\nWhnWC1T+vAkd8aOdo2STCQ/GwfHmdQKcwKHXFUbOOGs6dFJGiO1Q6b5NgtRZ\ny9jLCgL6FWc/sSDccSxzXuWmSckzb3iepfJC5NoOf1T8qmiwzyJQDI5yCLl4\nO9LTTBszULZ5PAwbV3hdH5UvPZ8gjQ7Dffl1wYB9HkZTlBKJwDUXmVz71bvp\nMDMcdd5xBA49Smy7Lb5B1jsHwORZIXY0iZTFzt17w3Fs8ZCkwr99AOZfembA\n8lqCMNlfJ3pzYPsCawotQEi15axYIJVny4uVt1S9N/fo0wRgrETaRIaxiecb\njTaUgcobhT0zp6Wtel9iTdHtH8XtBomkTdlEZ5ny8uqccnMGeCTxLFjwKBQw\n188/PVELNGvjsLC2kDIfjuCEqS5wlk/ZmdPdNNtDrw3iQ+Oi0x/AfRp47MVo\nF4VBItpXmyJndB8peV/dkYopc4mRmCdSvJUcZqe2Bot65K3JamhAirVrOh+J\n0l+odAjxQG9czRDeY9vNN7hzeeX2Ol72H+Yp/lfz5r/RXRTSIhMJXKO++fMr\n5bQd63pEhxKh+AfVp4ShkIAKNsbpCzV9qCszxyMIv/ElAmhD9+nJ8o9hmZCA\nVEVpkeCaAwSnazdIAut99End2QtouoIsTy37sJiLv2aOAOzGHAIUWFm/c/w/\ncZ5M\r\n=+VtT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"07e108ef780e603a9724132f748a6113c2a793fc","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"es-shim-api --bound","posttest":"npx aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"7.11.2","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"16.1.0","dependencies":{"call-bind":"^1.0.2","es-abstract":"^1.18.2","define-properties":"^1.1.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.5","nyc":"^10.3.2","tape":"^5.2.2","eslint":"^7.27.0","@es-shims/api":"^2.1.2","auto-changelog":"^2.3.0","has-strict-mode":"^1.0.1","array.prototype.map":"^1.0.3","safe-publish-latest":"^1.1.4","functions-have-names":"^1.2.2","@ljharb/eslint-config":"^17.6.0"},"_npmOperationalInternal":{"tmp":"tmp/object.entries_1.1.4_1622070461635_0.811810998276898","host":"s3://npm-registry-packages"}},"1.1.5":{"name":"object.entries","version":"1.1.5","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.1.5","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"e1acdd17c4de2cd96d5a08487cfb9db84d881861","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.5.tgz","fileCount":18,"integrity":"sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==","signatures":[{"sig":"MEUCIFw31Danwza7OHnXsiyO63TE4IXzX0Pq5moktrKSEFASAiEAw5xGgsYnXadteIs4AETZbjJynVt7h2jBg975IJtzpMo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29529,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh21rUCRA9TVsSAnZWagAA91YP/A4Bsc28656AVpjsCEfJ\nOdzlwOc3pFbhvyLSmKFWoOYIU6OyD8QW7nmCdLT88fHRlQqlWMxyNSLPmRy0\nlhewTAN1aMhH4VBYhCf8V5X2Rx+AH6PmqldmQ69Hw0i07SJrjZwSTcuigjer\n5R4GWT58uT/KaYqeNjC2GqybGhiC7ueTTVsgqcRjIW/PxUb1yQo5j76OzxeA\nuhD0oPt9JfmrZfw1UgWzZoNwmYEsEgXg7WKe35Lged9vmp5+bVCYX0LE/RsE\nOPDutWrGaLYWnZKuJ4h8kft4kIckxIg8JPCjXKEvZVr9tbBlx/AoOPzuodoF\n0zeOq9ZGCrFYy+wlyY77QEtSclo6Kj9t+lKFJmMTbiffzDaUvsmajxuFs8gQ\ntlngBEXoW9VK2CXWeuFhi+H7O2RJsZp3jHdGQ3BYfmJUjHefGgr/BEPR24Nx\nBVFc00a2tPHyNnsEyqIGefuwD0zgxH4pChjDTm/1lqMUkp+nsHIvhxL5Q7K8\neY/4kaLt9z0cIrJBUNj28dZDLE3Ep3zW6YLs3XYwHxtEja+uGBd3AeNqKxru\ne9RwCcR6NLtagHXTp92UZ0r9n3vWCVaMwX1aDASHxFlf1OVWPMXNKU+d1oQo\n9yTtR0H/PRwQEi5fO087+09751sxo7P3XqPDNnypSEFqs7CaktqayhlAJmN+\nUnkN\r\n=jEDd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"7c48007c3307ee3cb47f8bbcfb8cd04dadf96c52","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"es-shim-api --bound","posttest":"npx aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"7.24.0","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"16.10.0","dependencies":{"call-bind":"^1.0.2","es-abstract":"^1.19.1","define-properties":"^1.1.3"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.5","nyc":"^10.3.2","tape":"^5.3.1","eslint":"^7.32.0","@es-shims/api":"^2.1.2","auto-changelog":"^2.3.0","has-strict-mode":"^1.0.1","array.prototype.map":"^1.0.4","safe-publish-latest":"^1.1.4","functions-have-names":"^1.2.2","@ljharb/eslint-config":"^18.0.0"},"_npmOperationalInternal":{"tmp":"tmp/object.entries_1.1.5_1633280414238_0.24038437384976663","host":"s3://npm-registry-packages"}},"1.1.6":{"name":"object.entries","version":"1.1.6","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.1.6","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"9737d0e5b8291edd340a3e3264bb8a3b00d5fa23","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.6.tgz","fileCount":17,"integrity":"sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==","signatures":[{"sig":"MEUCIQC0Ds+1V9LXwtw6rME1ktqfFOmhBsam/QqOeB+Au5/V1gIgEcajk8f14R5c3QGo2sev/EDw9N1w7fdFLa019A0zT3A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjZ0WkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrY3A//ffyV54qb8gVqNXAzy9N3E6gW6dQEcYwxzPHjMwoLV/le47e6\r\njfKmwQHz/STqtajwy9xz4nxMZTRIDuk5eKNAFjKDd/A9yOdO2RjoqhXzdGPE\r\nH+DXZbgPwzWpeOfdXSVBgGep27VPiyX0xmDiDlDOxgYxxHMfpdQLXb7Lg71t\r\naIEPFRGG+XG9/0+rbR7cJWQGwsIQXTcEV4Kt6ArkzP55+vEkNPEJ2ifWZSTL\r\nKMD4DGf+uVvvj4CgLZIdamHwgIFKe25qgzzS3Mh8lKOcKViyITMK78QW3wFH\r\nrYKLfg6EL6Q00poqNn3hgdIfBEnGy7SYMarZqv2ADMFctKMwyDOU1Ne5T+SO\r\nWxuqXHmsL7Tc0s8tQwYlEnbKxoyG8OJ0Msfxi2FnChcTS520iSS2+4zzkAVk\r\nbMdpAOdYBD3OTRk+aCgqDDKLl3cFYygVzWqB4F71afyjB9uax/aRGgy/3w6m\r\niq9kSL4F19M24bbq3/krc6ztEL1gymkI4OkwXw3S7lV9gZaasVfG9cXl2a0G\r\nB2rFUccBYydF2fUHzHK5dVFSRakIgK0kyZpH8kiSvvbLQUUoYguTfzdjizf3\r\npRaK30K8bHptoqTwadCGouRoYon4nFaZgcRbFtXW6TTIa7fp5UbWxsjAvyxr\r\nNi0FcUl+TbdbfBg4FaaAmBXBdu4uxtm0LCQ=\r\n=wuD8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"84086e61918239c33088e8af9f07990255868782","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"es-shim-api --bound","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"8.19.2","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"19.0.1","dependencies":{"call-bind":"^1.0.2","es-abstract":"^1.20.4","define-properties":"^1.1.4"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.1","nyc":"^10.3.2","tape":"^5.6.1","eslint":"=8.8.0","npmignore":"^0.3.0","in-publish":"^2.0.1","@es-shims/api":"^2.2.3","auto-changelog":"^2.4.0","has-strict-mode":"^1.0.1","array.prototype.map":"^1.0.5","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/object.entries_1.1.6_1667712419930_0.5014889895555066","host":"s3://npm-registry-packages"}},"1.1.7":{"name":"object.entries","version":"1.1.7","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.1.7","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"2b47760e2a2e3a752f39dd874655c61a7f03c131","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.7.tgz","fileCount":17,"integrity":"sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==","signatures":[{"sig":"MEYCIQDyKzhe5152OzkPWifFUHDrXrbIJffj+f0MamTSbfMtUQIhANR+yojAwXpJYjRCW/9vxSQ4Fb8L2P67UQ8m9icNWPPk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31411},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"43415051aa0dd9b024d7e9920f10cf6c85e3f90a","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"es-shim-api --bound","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"9.8.0","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"20.5.1","dependencies":{"call-bind":"^1.0.2","es-abstract":"^1.22.1","define-properties":"^1.2.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.3","nyc":"^10.3.2","tape":"^5.6.6","eslint":"=8.8.0","npmignore":"^0.3.0","in-publish":"^2.0.1","@es-shims/api":"^2.4.2","auto-changelog":"^2.4.0","has-strict-mode":"^1.0.1","array.prototype.map":"^1.0.5","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/object.entries_1.1.7_1693199393028_0.7211028869094884","host":"s3://npm-registry-packages"}},"1.1.8":{"name":"object.entries","version":"1.1.8","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.1.8","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"bffe6f282e01f4d17807204a24f8edd823599c41","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.8.tgz","fileCount":18,"integrity":"sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==","signatures":[{"sig":"MEUCIGuAQ8wWXjkyVUgbcKc09PE3WXBaF/epZyMjWjOKSAEQAiEArGVpvz8AqZoTHH/+/gZl5su6BNZqun8qHpPk7au1e/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32563},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"42be4344804887875efc9a67f900dd4dac850e0b","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"es-shim-api --bound","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"10.5.0","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"21.7.0","dependencies":{"call-bind":"^1.0.7","es-object-atoms":"^1.0.0","define-properties":"^1.2.1"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.4","nyc":"^10.3.2","tape":"^5.7.5","eslint":"=8.8.0","npmignore":"^0.3.1","in-publish":"^2.0.1","@es-shims/api":"^2.4.2","auto-changelog":"^2.4.0","has-strict-mode":"^1.0.1","array.prototype.map":"^1.0.7","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/object.entries_1.1.8_1710796969710_0.6804863154150418","host":"s3://npm-registry-packages"}},"1.1.9":{"name":"object.entries","version":"1.1.9","author":{"name":"Jordan Harband"},"description":"ES2017 spec-compliant Object.entries shim.","license":"MIT","main":"index.js","scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest","lint":"eslint --ext=js,mjs .","postlint":"es-shim-api --bound","pretest":"npm run --silent lint","test":"npm run tests-only","posttest":"npx npm@\">= 10.2\" audit --production","tests-only":"nyc tape 'test/**/*.js'","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/Object.entries.git"},"keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"dependencies":{"call-bind":"^1.0.8","call-bound":"^1.0.4","define-properties":"^1.2.1","es-object-atoms":"^1.1.1"},"devDependencies":{"@es-shims/api":"^2.5.1","@ljharb/eslint-config":"^21.1.1","array.prototype.map":"^1.0.8","auto-changelog":"^2.5.0","encoding":"^0.1.13","eslint":"=8.8.0","functions-have-names":"^1.2.3","has-strict-mode":"^1.1.0","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.9.0"},"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},"publishConfig":{"ignore":[".github/workflows"]},"_id":"object.entries@1.1.9","gitHead":"f4e60eac7c94c37a34c6bd7bd716c930b69116b2","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"homepage":"https://github.com/es-shims/Object.entries#readme","_nodeVersion":"23.10.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==","shasum":"e4770a6a1444afb61bd39f984018b5bede25f8b3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.9.tgz","fileCount":18,"unpackedSize":33658,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIAvADEVGbDNVRw0R/CjyimUu365QiYICsoxDtJuiPuI+AiAs5R5+f/kaNQqAM1HWiyA4C7O0R4iPtvwhAqrBmJXrSA=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/object.entries_1.1.9_1742015159134_0.3555258524190348"},"_hasShrinkwrap":false},"1.0.0":{"name":"object.entries","version":"1.0.0","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","shim","object","keys","polyfill"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"54439d88f08ae4c4da9ee8a22dcf12e48686ff12","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.0.0.tgz","integrity":"sha512-PYhljqktRIYnJw+mE/62Vqmw7SmSsDzzXoh59/Jb9Jwg33NM9l6Po7ylyJ/q+5I8NXrlGt8KSAcGloTOhCQcqA==","signatures":[{"sig":"MEQCIGknYt4skVhDliQf9gvhTJmdHn1sPfYhmuxEcIt8K2qGAiAc57CBBT4XTINMppOSQLLLHTea3IYNSJbupVgZTEMDew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"54439d88f08ae4c4da9ee8a22dcf12e48686ff12","engines":{"node":">= 0.4"},"gitHead":"3d82b4507145baacd56c5c1474cc8f77cca2e9b7","scripts":{"jscs":"jscs test/*.js *.js","lint":"npm run jscs && npm run eslint","test":"npm run lint && es-shim-api && npm run test:shimmed && npm run test:module && npm run security","eslint":"eslint test/*.js *.js","coverage":"covert test/*.js","security":"nsp package","test:module":"node test/index.js","test:shimmed":"node test/shimmed.js","coverage-quiet":"covert test/*.js --quiet"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"2.14.1","description":"ES7 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"3.2.0","dependencies":{"es-abstract":"^1.3.1","object-keys":"^1.0.7","define-properties":"^1.1.1"},"devDependencies":{"nsp":"^1.1.0","jscs":"^2.1.1","tape":"^4.2.0","covert":"^1.1.0","eslint":"^1.3.1","array-map":"^0.0.0","@es-shims/api":"^1.0.0","@ljharb/eslint-config":"^1.1.0"}},"1.0.1":{"name":"object.entries","version":"1.0.1","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.0.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"874eb5f98563a6559e6eaff39f6ce3e377f41bb2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.0.1.tgz","integrity":"sha512-U3RNnbRnHfWNs5tXWbyJ/c0EibgSz0OkNezwRDJzpN9uWxOeNsn9MoYtdS+3hFGJVJ1IFdB/YpXAFd/MLNv+Mw==","signatures":[{"sig":"MEUCICgsQxpl20G342TbfGHfg42cDUVVSHmTppXZ62OSIg7fAiEAyAnBffYLg+bQyG45pI0vT5Ks3t7xRCDOuYGXgGHhgwc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"874eb5f98563a6559e6eaff39f6ce3e377f41bb2","engines":{"node":">= 0.4"},"gitHead":"2b0c739d9331b413bf691889e893637ddca4235a","scripts":{"jscs":"jscs test/*.js *.js","lint":"npm run jscs && npm run eslint","test":"npm run lint && es-shim-api && npm run test:shimmed && npm run test:module && npm run security","eslint":"eslint test/*.js *.js","coverage":"covert test/*.js","security":"nsp package","test:module":"node test/index.js","test:shimmed":"node test/shimmed.js","coverage-quiet":"covert test/*.js --quiet"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"2.14.3","description":"ES7 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"4.1.0","dependencies":{"es-abstract":"^1.3.1","object-keys":"^1.0.7","define-properties":"^1.1.1"},"devDependencies":{"nsp":"^1.1.0","jscs":"^2.1.1","tape":"^4.2.0","covert":"^1.1.0","eslint":"^1.5.0","array-map":"^0.0.0","@es-shims/api":"^1.0.0","@ljharb/eslint-config":"^1.2.0"}},"1.1.0":{"name":"object.entries","version":"1.1.0","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.1.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.0.tgz","fileCount":16,"integrity":"sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA==","signatures":[{"sig":"MEUCIQDQNZwdFpjBlEqCS5jmor50fbFtJVzWcICglrgLMxDWOgIgB3Jpw++nUQdVnIeP8RZBNa9Wi184rYRNmvb7kLv2Sss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21021,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcK9syCRA9TVsSAnZWagAAZsIP/AqWHrqJarva1L/IIZLd\nQvCnKv+N+YvRPgv1jsnOsEIsVAs2MGrSvWNrl6opYgVxwD+zaGQEzhmcCRfI\nxzbBW6YfNWMv2SB4g5ifPOYDVwehyasSK9kXJT+Ly8hJHCpQfDiExA+fOT/U\nPTBKJ4yRTr2d5c89ivuY8ZcrwSgP6dc+vZ0ce4d7u3RYGOJLTRHw3hCu2fr3\nXawGRn7/HBbx81c3yl/tyAGukPg4RnWr4SH18sn0CuAuRRjdrElESBVixSOS\nVn6skxQ8FAl5FAZLCr6J/C1TFWkezdHNqI76sTRt8faReJk4tfUgQ+GxMCfH\n1zvmomQ6p44VCfL5tksTYAOppT4V/LFBy58+J+Q7sWJALD9UjQPNZG6LBSFv\nPHkI5PLVKUadgEoY/QQx8rfI3ThAQ/QDSnaovBFOp2I5ZX0dkP0jm+xmN6gH\nBAIK8koa/BlEwm91XTpMn/hI7PR95QgUgiZ5uycvytj2XOhfNicbqLCwf+uH\nz6jBmUP2NU9wB4XD9EavCgfIkzVfvTrqsmtKMQoWh4HK/OQ4ctKjZB5vm1SV\nQvJPw7ujbYPal6qDcQwt45jdqmgBg3kGG3DwswU5jgLeraTyJmeCJ9wPYGnj\nNSuIdFYcldOLskyGGwNxm/0HbYdKsZwo0LqId3HvnRfXJhlwpXElO9UY8emR\nZsrV\r\n=V/sD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"e19be64799a917924d9c682bca9f76097a452510","scripts":{"lint":"eslint .","test":"npm run --silent tests-only","audit":"npm audit","pretest":"npm run --silent lint","coverage":"covert test/*.js","posttest":"npm run audit","preaudit":"npm install --package-lock-only --package-lock","postaudit":"rm package-lock.json","tests-only":"es-shim-api && npm run --silent test:shimmed && npm run --silent test:module","test:module":"node test/index.js","test:shimmed":"node test/shimmed.js","coverage-quiet":"covert test/*.js --quiet"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"6.5.0-next.0","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"11.6.0","dependencies":{"has":"^1.0.3","es-abstract":"^1.12.0","function-bind":"^1.1.1","define-properties":"^1.1.3"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.9.2","covert":"^1.1.1","eslint":"^5.11.1","array-map":"^0.0.0","@es-shims/api":"^2.1.2","@ljharb/eslint-config":"^13.1.1"},"_npmOperationalInternal":{"tmp":"tmp/object.entries_1.1.0_1546378033225_0.0064406414905664455","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"object.entries","version":"1.0.2","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.0.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"2ccb307caf5ab2d71d5b9a78180ced9734c214e6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.0.2.tgz","integrity":"sha512-B0Xaxfr3WHgzBUMyRoQqRNBtquCiuf7v91KASl11iDdbTPV3y+czQfjXlx/NFedW/neG7DwWbY4Qmp3aHanXjA==","signatures":[{"sig":"MEUCICE/fTmqpAF4erJe1w5VUyDy5YzfxfON3y4krXZFBzhoAiEAkwpW4KaxAu05kO0rE/8C0PSRcef3k1sXyuY7cuTzq5Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2ccb307caf5ab2d71d5b9a78180ced9734c214e6","engines":{"node":">= 0.4"},"gitHead":"bb7b413ffec0fbb2646e3b8c45385d031fb1a2c0","scripts":{"jscs":"jscs test/*.js *.js","lint":"npm run jscs && npm run eslint","test":"npm run lint && es-shim-api && npm run test:shimmed && npm run test:module && npm run security","eslint":"eslint test/*.js *.js","coverage":"covert test/*.js","security":"nsp package","test:module":"node test/index.js","test:shimmed":"node test/shimmed.js","coverage-quiet":"covert test/*.js --quiet"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"2.14.4","description":"ES7 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"4.1.1","dependencies":{"has":"^1.0.1","es-abstract":"^1.3.1","object-keys":"^1.0.7","define-properties":"^1.1.1"},"devDependencies":{"nsp":"^1.1.0","jscs":"^2.1.1","tape":"^4.2.0","covert":"^1.1.0","eslint":"^1.5.0","array-map":"^0.0.0","@es-shims/api":"^1.0.0","@ljharb/eslint-config":"^1.2.0"}},"1.1.1":{"name":"object.entries","version":"1.1.1","keywords":["Object.entries","Object.values","Object.keys","entries","values","ES7","ES8","ES2017","shim","object","keys","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.entries@1.1.1","maintainers":[{"name":"es-shims-owner","email":"ljharb+esshims@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.entries#readme","bugs":{"url":"https://github.com/es-shims/Object.entries/issues"},"dist":{"shasum":"ee1cf04153de02bb093fec33683900f57ce5399b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.entries/-/object.entries-1.1.1.tgz","fileCount":16,"integrity":"sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ==","signatures":[{"sig":"MEQCIA83yMzo2YOcyTlFwvR2Ia/+/edurXb1p9HpTvm/AtZMAiBBGCboCxnsQUcWjvI8Orjt4hv0QDlClqaK57w01O9TPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13398,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8poRCRA9TVsSAnZWagAA9XkP/RsnMKEiLzglJq5Eubb+\nZ+jhRTsQS2+qMipAxH1rDTzw2FNrDhVu80GNgykdn/MSJ7oL2j+Ka9B6CfC1\ng3kic5stg2A1GBp3oI0vknWMW5gJbB6Dn7x5pc+MB0bW2ykj56ohyq3gvVOe\nc8HNvAWhM1BDvuWE11ZW8nGtD6JqPaNEhmgy1EfMAhZRZMvFQpgkcrwAIdZS\nZWlF8i6xnrnRKl/DGoIlmr75yS8ENwExT4zY4ERPBgiehGh7DQLrjBHEdTsl\ngMrdtR7bmmKB1mOWOd3rJNSxHLisYKsYzcq0MrwDUC60598lHP6dt8OoMuh+\np68XblDdMvY7Ob2OUwXxbB2DejSJY3aOiEY4kgoucD8pYpRCW980IH8vIlke\nGyjHOibbe0GpXR5cZ4Q2lWRcIbxCLpwzwH/X3aao1zsUlfM7mk57fhe1hPu5\n36v0I0ACZASMmlr3tulWpRjHX0ae/wW5MPMjYIej8sxylf8YG4DC11HBqUlU\nkszAFKGtjFb7dfdzjBJRxLFKjAsxC/ExWz4FhfDhtm9INASTTcpIGySiPc8K\nrucIsg7nHQ0RegG54LFqu+aS/+u0gif5dvgYqPbfMXjCTUUH2NQshSL1M+Lc\n/ktn300KeFlXZFL/P4OOEmGAi19G/AZ1XNt7UJcfRwYDu9x70lbtTra9IYqf\nC9Bg\r\n=ppdS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"22eb83237db19d47235331dcb2635c4a74479f92","scripts":{"lint":"eslint .","test":"npm run --silent tests-only","pretest":"npm run --silent lint","coverage":"covert test/*.js","posttest":"npx aud","tests-only":"es-shim-api && npm run --silent test:shimmed && npm run --silent test:module","test:module":"node test/index","test:shimmed":"node test/shimmed"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"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"]},"repository":{"url":"git://github.com/es-shims/Object.entries.git","type":"git"},"_npmVersion":"6.13.1","description":"ES2017 spec-compliant Object.entries shim.","directories":{},"_nodeVersion":"13.3.0","dependencies":{"has":"^1.0.3","es-abstract":"^1.17.0-next.1","function-bind":"^1.1.1","define-properties":"^1.1.3"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.11.0","covert":"^1.1.1","eslint":"^6.7.2","array-map":"^0.0.0","@es-shims/api":"^2.1.2","functions-have-names":"^1.2.0","@ljharb/eslint-config":"^15.0.2"},"_npmOperationalInternal":{"tmp":"tmp/object.entries_1.1.1_1576180241122_0.5428702393060176","host":"s3://npm-registry-packages"}}},"name":"object.entries","time":{"created":"2015-09-02T14:24:29.123Z","1.0.3":"2015-10-06T08:33:30.493Z","1.1.2":"2020-05-20T21:17:29.131Z","1.0.4":"2016-12-04T09:55:25.480Z","1.1.3":"2020-11-26T22:28:15.304Z","1.1.4":"2021-05-26T23:07:41.957Z","1.1.5":"2021-10-03T17:00:14.382Z","1.1.6":"2022-11-06T05:27:00.133Z","1.1.7":"2023-08-28T05:09:53.208Z","1.1.8":"2024-03-18T21:22:49.849Z","1.1.9":"2025-03-15T05:05:59.361Z","modified":"2025-05-13T10:28:08.367Z","1.0.0":"2015-09-02T14:24:29.123Z","1.0.1":"2015-09-21T23:29:20.003Z","1.1.0":"2019-01-01T21:27:13.861Z","1.0.2":"2015-09-25T15:33:35.681Z","1.1.1":"2019-12-12T19:50:41.235Z"},"readmeFilename":"README.md","homepage":"https://github.com/es-shims/Object.entries#readme"}