{"_id":"object.values","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"dist-tags":{"latest":"1.2.1"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"description":"ES2017 spec-compliant Object.values shim.","readme":"# object.values <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.values` shim. Invoke its \"shim\" method to shim `Object.values` 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.values).\n\nMost common usage:\n```js\nvar assert = require('assert');\nvar values = require('object.values');\n\nvar obj = { a: 1, b: 2, c: 3 };\nvar expected = [1, 2, 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(sym);\n}\n\nassert.deepEqual(values(obj), expected);\n\nif (!Object.values) {\n\tvalues.shim();\n}\n\nassert.deepEqual(Object.values(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.values\n[npm-version-svg]: https://versionbadg.es/es-shims/Object.values.svg\n[deps-svg]: https://david-dm.org/es-shims/Object.values.svg\n[deps-url]: https://david-dm.org/es-shims/Object.values\n[dev-deps-svg]: https://david-dm.org/es-shims/Object.values/dev-status.svg\n[dev-deps-url]: https://david-dm.org/es-shims/Object.values#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/object.values.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/object.values.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/object.values.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=object.values\n[codecov-image]: https://codecov.io/gh/es-shims/Object.values/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/es-shims/Object.values/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/Object.values\n[actions-url]: https://github.com/es-shims/Object.values/actions\n","repository":{"type":"git","url":"git://github.com/es-shims/Object.values.git"},"users":{"chirag_purohit71085":true,"samme":true,"rahulraghavankklm":true},"bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"license":"MIT","versions":{"1.0.3":{"name":"object.values","version":"1.0.3","keywords":["Object.values","Object.keys","Object.entries","values","ES7","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.values@1.0.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"a7774ba050893fe6a5d5958acd05823e0f426bef","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.0.3.tgz","integrity":"sha512-qmDXEha79uR2cruWGq3d2hA6eL0kz+1pxJV04TGwfuMH93UIA72SSiqzcaxl9Em5OR2cuDbFoC+V6PtSzd6/+Q==","signatures":[{"sig":"MEUCIAooWFquaEWarwUlktiXRgy96wny88gwfNbDiTkSrbwbAiEA5FfrKYRsN1t/jTqp4rSlFSlkZab/DvUFfCkOm+F/u4k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a7774ba050893fe6a5d5958acd05823e0f426bef","engines":{"node":">= 0.4"},"gitHead":"5f08f1f169279e9d088ec9e3a52df452f85060a6","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.values.git","type":"git"},"_npmVersion":"2.14.4","description":"ES7 spec-compliant Object.values 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.values","version":"1.1.2","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"object.values@1.1.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"7a2015e06fcb0f546bd652486ce8583a4731c731","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.1.2.tgz","fileCount":24,"integrity":"sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==","signatures":[{"sig":"MEUCIQDkcvbxJmpVlVqgnFb7fY976KXQSKZ8Ff3jadpSe1Yd5gIgf00z8M15cXGI8P5yFPCToEmA+flmESbCbea7Wnp8Yyo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20092,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfwCwBCRA9TVsSAnZWagAAhnoP/1Ye39hhe+YufvHdoday\n+hjtC67f0+Kqn7vmrYVLJusrckXKkqxXofqwDdJ3mYhAO4TI8KWD5Iv/wmK/\ntcxIT4my0GQaMYCof0NSirov3FsLh1Hw6ZY2OG7vftgQvoMvEeDEi+mVUtcs\nvuDuOanjZRCbGfZjzUrWS3cNd5Pj4uRQFSo4G3X3wJEv4Qqy5sQOsoPNUOUl\n92A3SkHV9rLArj02r7C1XWon96ZNjfsW8VShpy+qdxd9Pe8IeQ2lI5C1GwmH\n2dzubeDZcEMJoAFiddtZJWYztbEOpba5w5LILx+07aY2M/+LwzHXi5d/g9jT\nDojHkV5KGwWdcoggG0CoFH2DjTsMORlpxGLGSYPbQ2zGAMUA9p19bwS2NgNf\nv9IswaJk398AS++CYIMPV3UW9QrvEvfnibUmWCKtDyvqu2udP+DVigJDcdx3\nwlSwdaqzNDdyf1mRwqTQi96DpRDJCJcHszksCpCBMpbxXI9XKKQw8vtkdk7q\nLvFX/Q/wty7rnMeoyjx2hHP+6RxFx8qr4SdXQM23kwsrjCi2AmUEE5RAlxyg\nFL1xu7RYrIATSN2u7LQu5Uts9aVufPoP38HvtFTrToMTeiIMDkYXPUVwr5ez\nQop45ge5j1LDqKSoQUJQihl9g74EHmdfdyxOoopB+8tkTHVRby5DBZlnBem6\nf4Xl\r\n=5Mei\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"3b81b1875d5359664028921183c843bc2205327b","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run lint","postlint":"es-shim-api --bound","posttest":"npx aud --production","prepublish":"safe-publish-latest","tests-only":"nyc tape 'test/**/*.js'"},"_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.values.git","type":"git"},"_npmVersion":"6.14.8","description":"ES2017 spec-compliant Object.values 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,"devDependencies":{"aud":"^1.1.3","nyc":"^10.3.2","tape":"^5.0.1","eslint":"^7.14.0","array-map":"^0.0.0","object-keys":"^1.1.1","@es-shims/api":"^2.1.2","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.values_1.1.2_1606429697427_0.4556652603010847","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"object.values","version":"1.2.1","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"funding":{"url":"https://github.com/sponsors/ljharb"},"description":"ES2017 spec-compliant Object.values 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 tests-only","posttest":"npx npm@'>= 10.2' audit --production","tests-only":"nyc tape 'test/**/*.js'","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/Object.values.git"},"keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"dependencies":{"call-bind":"^1.0.8","call-bound":"^1.0.3","define-properties":"^1.2.1","es-object-atoms":"^1.0.0"},"devDependencies":{"@es-shims/api":"^2.5.1","@ljharb/eslint-config":"^21.1.1","array.prototype.map":"^1.0.7","auto-changelog":"^2.5.0","encoding":"^0.1.13","eslint":"=8.8.0","functions-have-names":"^1.2.3","has-strict-mode":"^1.0.1","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","object-keys":"^1.1.1","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.values@1.2.1","gitHead":"be752f55df2beae025230681d89520c510d86a7f","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"homepage":"https://github.com/es-shims/Object.values#readme","_nodeVersion":"23.4.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==","shasum":"deed520a50809ff7f75a7cfd4bc64c7a038c6216","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.2.1.tgz","fileCount":17,"unpackedSize":32667,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD9mHHpu2RYuhT0VIn+gTVjd3Vpsgw8QMQMuhgkqziqrgIhAIGSXq8i7pYcV3Y/Pwu+Jg9q9kx7sd1OuWnWQ8qYNZa+"}]},"_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.values_1.2.1_1734590347990_0.9304535099281013"},"_hasShrinkwrap":false},"1.0.4":{"name":"object.values","version":"1.0.4","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.values@1.0.4","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"e524da09b4f66ff05df457546ec72ac99f13069a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.0.4.tgz","integrity":"sha512-j8kQn+slWQe1yBFI03FUchGaE5nlK2KLbxV86hM5eCz+pTE9JB4NOGivv/o1wPELIuag7VSfo2vcNQwZjIsYlA==","signatures":[{"sig":"MEUCIQDc9x7aYdQQaYm5/3tobFkva2i8yYjSNqtBEg8T4H8ayQIgUT4RFkFKTaU0hlRYfXJSTlfrQyJdVfq70E+VXd90rMA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e524da09b4f66ff05df457546ec72ac99f13069a","engines":{"node":">= 0.4"},"gitHead":"202b50615f2eb0212c9b86ef2486d567770ed8b0","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.values.git","type":"git"},"_npmVersion":"3.10.9","description":"ES2017 spec-compliant Object.values 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.values-1.0.4.tgz_1480881417313_0.5307759246788919","host":"packages-18-east.internal.npmjs.com"}},"1.1.3":{"name":"object.values","version":"1.1.3","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"object.values@1.1.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"eaa8b1e17589f02f698db093f7c62ee1699742ee","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.1.3.tgz","fileCount":18,"integrity":"sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==","signatures":[{"sig":"MEQCIHtij2YHemauoDJJXsC+ZM/NZrkXK4J3bcPMVjRgSUJKAiA/zyW/+u7c6ugK9Cg3imD8nAb5LuAJaGZmCfBm16G9DQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14844,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNJCUCRA9TVsSAnZWagAAxhEP/25xrbp/gfJIyyx2Ufey\nq45vSTWQifLI+ag53FDjNGkfqU7FmCVMMPeUv+1Cpt10Zf2jV5//RxLUhWvG\nJ+pYTM0YumbhLhxWQIijlwOcBAkKuuvSJmoc4aiCAeNH11bhYbUfiqNUHvn4\nP4fuUGRKVd//w7uqma2WaKrVIgOQD0DMErGCRchmB/evtKH2NfsQdg2cf5em\nU41HeotjhWEql52LCJEu0hdm1aX+NcN+hiNnFl9lKKlXduOK6WKFXDA6na4Z\n+PIEWvDZqfYbRRJTbwpRYHWmOZ1AIBB3nwrhLTDylFRWP+1axhWprrN6RQSA\nYWE6Ins0yOkfVuQBZ4wxeQheJF2cnO1nLfQ4h/jq8dDpvOXF4N3hz8T5QW/f\nAwYjsM9a+Zur6e0ZQefbTMNv5mNtqrTh4IctbYrdbJCEexCcC8vBtzFpe0Kf\nHNsIecS5+SBU+nKffTZI8xGyqe33PRlSLsIylkeJQGxblkdEiR2NyIIsThIb\nZchkJ6xvEQ3wsvu/HR4cHYr3U22FSRHxy/bowSI9qNOcnWJELjUknwav2zun\nPnT+4bh8athl6VI/NSfSNKMM1q4ayOuaNcMYCbqmIiMFvAdoCqe424aYZiUz\nPCPwmvN/TvZ2zUcPfQfzLnv+gFFAyUsFcqUsb60C/CGYNrmZM0i2n3K5xZh0\n8JdL\r\n=uCQS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"695f42e7132ecd52f0b929aedf1ae8d1de1ad937","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run lint","postlint":"es-shim-api --bound","posttest":"npx aud --production","prepublish":"safe-publish-latest","tests-only":"nyc tape 'test/**/*.js'"},"_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.values.git","type":"git"},"_npmVersion":"7.5.4","description":"ES2017 spec-compliant Object.values shim.","directories":{},"_nodeVersion":"15.8.0","dependencies":{"has":"^1.0.3","call-bind":"^1.0.2","es-abstract":"^1.18.0-next.2","define-properties":"^1.1.3"},"_hasShrinkwrap":false,"devDependencies":{"aud":"^1.1.4","nyc":"^10.3.2","tape":"^5.2.0","eslint":"^7.20.0","array-map":"^0.0.0","object-keys":"^1.1.1","@es-shims/api":"^2.1.2","has-strict-mode":"^1.0.1","safe-publish-latest":"^1.1.4","functions-have-names":"^1.2.2","@ljharb/eslint-config":"^17.5.1"},"_npmOperationalInternal":{"tmp":"tmp/object.values_1.1.3_1614057619791_0.6700125574194895","host":"s3://npm-registry-packages"}},"1.1.4":{"name":"object.values","version":"1.1.4","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"object.values@1.1.4","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"0d273762833e816b693a637d30073e7051535b30","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.1.4.tgz","fileCount":18,"integrity":"sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==","signatures":[{"sig":"MEUCIAW6Sz6/UYgSjow7Jeb9g/IYWARQhDxDooSMRk6/46xCAiEAmkE15Ehd8FYUPjGdGLgqkOCEzqLAPBtKlV8dqPPSH8A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28252,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgrtS9CRA9TVsSAnZWagAANY0P+wdlxeeay2KuhGzy5NpE\niz15VN365mOMLcl+RebFZk0be1zbJOIO3kR2TbUDPgxZhIESICap7v2FLKu7\n5k41g1I56wrTgUUEzwlQPe+6noMad/psCq6ZssgU11+ZcixQT6et1NSbflRa\nPGDp16fV1a5rT+QKs5mVV5dKlrKCf2mCI33JMiDpV3KMFHBSO5vAxH4MNyPF\n4KdDsAEfDkEMOH8cTcf/VhtIeNzD6D3spil8bSChbzg7fOKBej394BzJ8yu/\nQziglv7rqKsL2n0k1J+IiQ94gmSB7iy9EKpnTD8kvAci/K03I2lH775ZB/QT\n5xvDeIZ4fI4mRrAD4GJGBXtaOiLn039WNLmj1+Jy0l8TWpd6iYXWHGEODAhP\nuKBgTtfT0/lKFe1RLxLrhTVbK/ro3agPMODSEkNWPy9hrB7mNvpbQZMECkQa\nJtYF11lZkBCohASsk2Z4FfmyDb41ZKpAZ4886UoxS/2W/gEz2oqrGEYhGYRU\nqLfZAKFgqxbrExunbbmD9zBudskAaR15oWequQEn71yKQENZIKUraobU0lG6\ngbX3Gof1saPHPGDLqaEjeBvWnFq51T3iL2OYbtJPGjakv69Jpp98FfkNGJT6\ndaDkBShon6xrPPYDVoX7I3BB0lioE8+aGjIOk3iTpHkyWzYQjhwOVJenJs3E\nQiNz\r\n=Ugpv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"8c9435e0ac5b079a7d68a7541042ac1d94a3e663","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run 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.values.git","type":"git"},"_npmVersion":"7.11.2","description":"ES2017 spec-compliant Object.values 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","object-keys":"^1.1.1","@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.values_1.1.4_1622070461268_0.6954003265748214","host":"s3://npm-registry-packages"}},"1.1.5":{"name":"object.values","version":"1.1.5","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"object.values@1.1.5","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"959f63e3ce9ef108720333082131e4a459b716ac","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.1.5.tgz","fileCount":18,"integrity":"sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==","signatures":[{"sig":"MEUCIQDi1qBsvkcTXc+IWtpfnP2m9ebUrWANVrKGYME2c04G1AIgJcJmmmHID8655WJD/33FTPvCuV67sH6hNVqPlxX5i9I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29009},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"ff9bce4d0a38dcaf556abb0f7093322a9888275c","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run 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.values.git","type":"git"},"_npmVersion":"7.24.0","description":"ES2017 spec-compliant Object.values 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","object-keys":"^1.1.1","@es-shims/api":"^2.2.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":"^18.0.0"},"_npmOperationalInternal":{"tmp":"tmp/object.values_1.1.5_1633326834994_0.6024869061725999","host":"s3://npm-registry-packages"}},"1.1.6":{"name":"object.values","version":"1.1.6","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"object.values@1.1.6","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"4abbaa71eba47d63589d402856f908243eea9b1d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.1.6.tgz","fileCount":17,"integrity":"sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==","signatures":[{"sig":"MEYCIQD6ATWZkooSpAR/vs9jScMtXhDqJg2WP7CqYGtaRNZBMgIhAKffy8bT7WDFlA3XS4lUI40scbZQbBZ7XTn7BXMUtT6o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjaKr/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrjXw//Wk2Te/9fA3A+re4RIOAnIRl/ncKTzWKDtDtKCXkbRSkXhc8X\r\n6/0omt7OGBjFZrmHIuY18mN3K7huXE8N+6RDVU8uJie+0GO1BVDkwIUoZV90\r\nWYLzsvjtfWLEcab5pXfe1R5cIXX246ACDY19pSKQfwB+B3/iafMoFRBwLm2N\r\ncfXxCYMbqVWE62Y2ymh+GcVLc1nlLqwPmgkvsCYBuAsMsqRNZYzh2gYlFkgm\r\n+uC0uk4b7xG103wOcUCUvXV0T1BHLmFJKdlWdXoKe+Vn6DBAKjUUUxRbmrPW\r\n4VHl0Paccj5d6RVzuhDl2LAr59dhE7QWK5MyaDpIbCd+jdUnUGTaHSvb0v7Z\r\n2qtOC6YTZMucZvhJKyaq4MWU0JaMrOfBPxFtIy5SwF7dxiZLMKpc+bsNzI/C\r\n1UK26YyRT3RyrQS7277u/3Qa4J0dpmCuVqNJnssraXKpZ089EBwvAbM20RQ4\r\nk2Jws5f/Me55d0fxUKEWEknye4QsXVqrSwwn6x+wYJvLcK9XVxCBgOmkKJ4b\r\nwPOaZ/RC2tI0w8Hb2URt58BHVWlL0IJhCj3iwsmEoKbFifdmVrYSfaC8kHb+\r\nq0a2/e+At8K8p60lwWX51nWLAde51YaOfk0XJjsg0gBaFszQ1mQGRGpxMkli\r\nkCuK5fqEXgabLRbzzwBulPhngUr54CX8UGs=\r\n=hXMW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"da744e066168573d2b4b13b9d9bd4daa386786bf","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run 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.values.git","type":"git"},"_npmVersion":"8.19.2","description":"ES2017 spec-compliant Object.values 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","object-keys":"^1.1.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.values_1.1.6_1667803903699_0.856961612600792","host":"s3://npm-registry-packages"}},"1.1.7":{"name":"object.values","version":"1.1.7","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"object.values@1.1.7","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"617ed13272e7e1071b43973aa1655d9291b8442a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.1.7.tgz","fileCount":17,"integrity":"sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==","signatures":[{"sig":"MEUCIQC20AWXc0fvnrNvLjx8QuAoRtgB7daFKI0R/1QPw0xregIgSgQGZzyD57fQbYH3tSobBTaj4U5mDgR4pPW6vGATsrY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30904},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"50b8a19330e4bb9b08be37dd6c81111709983da7","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run 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.values.git","type":"git"},"_npmVersion":"9.8.0","description":"ES2017 spec-compliant Object.values 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","object-keys":"^1.1.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.values_1.1.7_1693203450598_0.9935015148005166","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"object.values","version":"1.0.0","keywords":["Object.values","Object.keys","Object.entries","values","ES7","shim","object","keys","entries","polyfill"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.values@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"7ee9e039f0c6abac54e6d2d7f4aec2afe7362d58","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.0.0.tgz","integrity":"sha512-ItIu0V8y4ycvXeXiRk0tYL5YkKcx1+NrA+VPz8VrLTORoVXbv6ctt46O/wuHxQIqysL2ikiPkv8Y+/HptC8I5w==","signatures":[{"sig":"MEQCIC39x8yKmYE2GwfOYUlgNldIJtupgGGwqRkLzzgIT+VyAiAqqUb4jsBBtL8mHn1cT103XwsDk2VPd2qWlW7G5C9TdA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7ee9e039f0c6abac54e6d2d7f4aec2afe7362d58","engines":{"node":">= 0.4"},"gitHead":"4d11654d969d3688f09d05eb389070357854e49c","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.values.git","type":"git"},"_npmVersion":"2.14.1","description":"ES7 spec-compliant Object.values 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.values","version":"1.0.1","keywords":["Object.values","Object.keys","Object.entries","values","ES7","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.values@1.0.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"9386884a082ddc8920fbfc42fc2bb125a192f3ad","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.0.1.tgz","integrity":"sha512-8rapL6x9zLgAWYcL7SkBwdJgcunJvEViUHbo5xIDxS9g//VOD90zvpU+dZm1EzBIZGsE+3UKYPMpcW98qMh3Gg==","signatures":[{"sig":"MEYCIQC2VnIkChwSAGBj8gbOlOW8HiZUGabmMDsBno/KYnsMYQIhALT1Y9g5psX3hVd/OkoDCqluBlvHxSzZbnHgRN0S/cjY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9386884a082ddc8920fbfc42fc2bb125a192f3ad","engines":{"node":">= 0.4"},"gitHead":"5d455801147df87de1991dd770184642e670ed8b","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.values.git","type":"git"},"_npmVersion":"2.14.3","description":"ES7 spec-compliant Object.values 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.values","version":"1.1.0","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.values@1.1.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"bf6810ef5da3e5325790eaaa2be213ea84624da9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.1.0.tgz","fileCount":16,"integrity":"sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg==","signatures":[{"sig":"MEUCIGMg5mhrBXos1/Lv6CRvilHAaf159p7oTu4JczartN9ZAiEAp9JIKcYqXhJMQOZ92dyf3sDfN89NMFTfbpYgpU1dL/g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLFCwCRA9TVsSAnZWagAAU0kP/1g/+EUvNLfX62+ykKez\nZlMT64CO4CRJ/1/Ams4ERtNdDWQugUNRrz++7oXkzLAU4t/LKZCyls1VTqFM\nxiOr0olZ0ebLQwxHCkangeLpVcByxOUz0sQtIE6XPQQ691CJEE/Zsy4g31lU\nECtrCqdxgjcT5ctJLP2Sz9vyGz/pfyQ7X9UZBWOyD3xAnQh87HucQtZoM0Fa\ngDDFVKXxOXMVNAOqVmMVoKBsqNkIb9U/6lkyCm9BZetHZrTWU8VyQlhfndLR\nxdZwGZKXFLH8DdAe/bJ451Anqlbo4OGNAsxYZzXAgbv4cZ/pRbP3oAXIix6P\noLecdlBcafO8D5CieVpQMmeXSSTUx7Kiu7T3FrkjMWsvUlmYtinsDA6osWZT\nY9Wd8IKfvgYjsKG2JvSE605/84Bo9z3DTQOQxBDF5Aa8rsa48ZaPUU+uI5Vh\neyqcJ7aYFlSDakrzJfapcQaVWy373b+hihBNJXhSPEjuF5p8/VT1zlNvoR10\nfyZYee39tct7/kxqXVSw/8ryKVUBo5GsE6JnzTD6fMM5thiHytHuizSzmrpC\nm0OhtdDbQD8a/5UZ8v3LJVl7UF+U2q4RUGqS/qAr3UKAHJA3K6UXRwUgDJVd\n7zYn38L4WxnKyAiQyg5xC7MpcFMNscuywaNgr1UzxRSAPwJL+7Q6xeW1LPvt\nKzjH\r\n=hGj0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"gitHead":"4d329533840278d1551293e93ff96ff82e6cd922","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 --package-lock-only","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.values.git","type":"git"},"_npmVersion":"6.5.0-next.0","description":"ES2017 spec-compliant Object.values 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","object-keys":"^1.0.12","@es-shims/api":"^2.1.2","@ljharb/eslint-config":"^13.1.1"},"_npmOperationalInternal":{"tmp":"tmp/object.values_1.1.0_1546408112156_0.8028896537006116","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"object.values","version":"1.0.2","keywords":["Object.values","Object.keys","Object.entries","values","ES7","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband"},"license":"MIT","_id":"object.values@1.0.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"e2e410ec29723b1bca4c3f635c0c319ca3fdca35","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.0.2.tgz","integrity":"sha512-EaenYKZcfmGuUE+SGUbK3g71+8s+LDctfja4qbaSZJ9cnhjGU6uranogWtXxNhCwUrRlGEUD7YtHVAS0ker4yw==","signatures":[{"sig":"MEUCIFv/QEhYTT5AKB9fwsQBsZK+EYmEMceXvSj5gxuy5a/5AiEAg7BR8fepOCJC7TalMrJdFJ0SkDSBlUuM5JSmvxebCf8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e2e410ec29723b1bca4c3f635c0c319ca3fdca35","engines":{"node":">= 0.4"},"gitHead":"7f7e74f2cf8e3a8b25f2a830e8fc51a8aefbfd9d","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.values.git","type":"git"},"_npmVersion":"2.14.4","description":"ES7 spec-compliant Object.values 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.values","version":"1.1.1","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"object.values@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.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"68a99ecde356b7e9295a3c5e0ce31dc8c953de5e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.1.1.tgz","fileCount":16,"integrity":"sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==","signatures":[{"sig":"MEQCIHSMU5rLRd+ppoOs+lj7UoFFaHpMqK1HRcFxxBGfzICXAiBRLcBdcfLkRr2WaBUgG/7rK3F6fw8FbQW10nhcBp0z9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8z0rCRA9TVsSAnZWagAAdDIP/0UOwzTIIZiZN452d9dq\nl7/s5n9F9HAzvNf1cAV1u8zEiVrMOSh+J5XPVNuE0qXV7cOmUwQErwVWxMai\nfxHaWKmEB4I5zBC4OjthLm138s3PpDZMNjvf5eV+qNWdbzfvzDnKkSJhdfKL\n/W8jKEYAfe+BySBsJbWubeoPxlLBB5o02pfm10u46x/UR9O4u6g36+EnrDzQ\nJHr2IpNMY5HQUKllaSpoYIofSJaost/0m6wWlkXv2ecqpX+t6/3gqZSB/NJA\n4sOMRXhxQIzbw986F98++3aJV55ZwDziOzWGhMB0AboOJxBshDUYkcmCEtJS\nHp0+/PUiPTRKzmsFL47a2lhds6wDX54+Jk/WhIyBxu7pYNYAlBWUKLkCtzQc\n92aCuPXVHwoRuSYSVz3FOxMDi/0+aBLHc7TUWdUWNzSd2kigjyt37MnKQdCg\nZOcPg2EEPBhyQfpDstPxKU6dCgQbVzYACmHqurrDVpo/pK+igA78mrX/FTWZ\nmKSbp+cXbEkMXOgFC158g0wxisW8HRFyHVPhTIjoTBDfAXtsvt/UGLR6jcQS\neiuJsa/UmgcScIDsGxXO/+Lcj5ynRZ6BBTr8ogAHc+F6ToZ+HzxZX0lUuH0i\n4htZ/g/0IgD3phKOxW0LCBENenv/95phQQHs0Ff3ItHq+z0aKBwcVQ+9/KLg\nVwgI\r\n=2Rgy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"e00dd4a6b6aef218167b4e20c959d43adcc33f2b","scripts":{"lint":"eslint .","test":"npm run tests-only","pretest":"npm run lint","coverage":"covert test/*.js","posttest":"npx aud","tests-only":"es-shim-api && npm run test:shimmed && npm run 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.values.git","type":"git"},"_npmVersion":"6.13.1","description":"ES2017 spec-compliant Object.values 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","object-keys":"^1.1.1","@es-shims/api":"^2.1.2","functions-have-names":"^1.2.0","@ljharb/eslint-config":"^15.0.2"},"_npmOperationalInternal":{"tmp":"tmp/object.values_1.1.1_1576221995108_0.2693036147744363","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"object.values","version":"1.2.0","keywords":["Object.values","Object.keys","Object.entries","values","ES7","ES8","ES2017","shim","object","keys","entries","polyfill","es-shim API"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"object.values@1.2.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/Object.values#readme","bugs":{"url":"https://github.com/es-shims/Object.values/issues"},"dist":{"shasum":"65405a9d92cee68ac2d303002e0b8470a4d9ab1b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object.values/-/object.values-1.2.0.tgz","fileCount":17,"integrity":"sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==","signatures":[{"sig":"MEYCIQC/AjMjuU7eApXNgZoKsAi2lKdavRZfsIBdZ4Sh45RAWAIhAMsUXkEMQBnylsZ41ciBPHDUJudBtmordgXKgZMZcgb4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31515},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"3bca8da627ee904bd8074ab99965436630c3e78e","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run 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.values.git","type":"git"},"_npmVersion":"10.5.0","description":"ES2017 spec-compliant Object.values 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","object-keys":"^1.1.1","@es-shims/api":"^2.4.2","auto-changelog":"^2.4.0","has-strict-mode":"^1.0.1","array.prototype.map":"^1.0.6","safe-publish-latest":"^2.0.0","functions-have-names":"^1.2.3","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/object.values_1.2.0_1710785274983_0.9431341680040641","host":"s3://npm-registry-packages"}}},"name":"object.values","time":{"created":"2015-09-02T14:24:27.145Z","1.0.3":"2015-10-06T08:32:39.625Z","1.1.2":"2020-11-26T22:28:17.555Z","1.2.1":"2024-12-19T06:39:08.165Z","1.0.4":"2016-12-04T19:56:59.257Z","1.1.3":"2021-02-23T05:20:19.924Z","1.1.4":"2021-05-26T23:07:41.408Z","1.1.5":"2021-10-04T05:53:55.202Z","1.1.6":"2022-11-07T06:51:43.886Z","1.1.7":"2023-08-28T06:17:30.803Z","modified":"2025-05-13T10:27:53.063Z","1.0.0":"2015-09-02T14:24:27.145Z","1.0.1":"2015-09-21T23:28:05.133Z","1.1.0":"2019-01-02T05:48:32.293Z","1.0.2":"2015-09-25T15:33:34.061Z","1.1.1":"2019-12-13T07:26:35.253Z","1.2.0":"2024-03-18T18:07:55.189Z"},"readmeFilename":"README.md","homepage":"https://github.com/es-shims/Object.values#readme"}