{ "name": "es-iterator-helpers", "version": "1.0.16", "description": "An ESnext spec-compliant iterator helpers shim/polyfill/replacement that works as far down as ES3.", "main": "index.json", "exports": { ".": "./index.json", "./auto": "./auto.js", "./shim": "./shim.js", "./Iterator": "./Iterator/index.js", "./Iterator/auto": "./Iterator/auto.js", "./Iterator/polyfill": "./Iterator/polyfill.js", "./Iterator/implementation": "./Iterator/implementation.js", "./Iterator/shim": "./Iterator/shim.js", "./Iterator.prototype": "./Iterator.prototype/index.js", "./Iterator.prototype/auto": "./Iterator.prototype/auto.js", "./Iterator.prototype/polyfill": "./Iterator.prototype/polyfill.js", "./Iterator.prototype/implementation": "./Iterator.prototype/implementation.js", "./Iterator.prototype/shim": "./Iterator.prototype/shim.js", "./Iterator.from": "./Iterator.from/index.js", "./Iterator.from/auto": "./Iterator.from/auto.js", "./Iterator.from/polyfill": "./Iterator.from/polyfill.js", "./Iterator.from/implementation": "./Iterator.from/implementation.js", "./Iterator.from/shim": "./Iterator.from/shim.js", "./Iterator.prototype.constructor": "./Iterator.prototype.constructor/index.js", "./Iterator.prototype.constructor/auto": "./Iterator.prototype.constructor/auto.js", "./Iterator.prototype.constructor/polyfill": "./Iterator.prototype.constructor/polyfill.js", "./Iterator.prototype.constructor/implementation": "./Iterator.prototype.constructor/implementation.js", "./Iterator.prototype.constructor/shim": "./Iterator.prototype.constructor/shim.js", "./Iterator.prototype.map": "./Iterator.prototype.map/index.js", "./Iterator.prototype.map/auto": "./Iterator.prototype.map/auto.js", "./Iterator.prototype.map/polyfill": "./Iterator.prototype.map/polyfill.js", "./Iterator.prototype.map/implementation": "./Iterator.prototype.map/implementation.js", "./Iterator.prototype.map/shim": "./Iterator.prototype.map/shim.js", "./Iterator.prototype.filter": "./Iterator.prototype.filter/index.js", "./Iterator.prototype.filter/auto": "./Iterator.prototype.filter/auto.js", "./Iterator.prototype.filter/polyfill": "./Iterator.prototype.filter/polyfill.js", "./Iterator.prototype.filter/implementation": "./Iterator.prototype.filter/implementation.js", "./Iterator.prototype.filter/shim": "./Iterator.prototype.filter/shim.js", "./Iterator.prototype.take": "./Iterator.prototype.take/index.js", "./Iterator.prototype.take/auto": "./Iterator.prototype.take/auto.js", "./Iterator.prototype.take/polyfill": "./Iterator.prototype.take/polyfill.js", "./Iterator.prototype.take/implementation": "./Iterator.prototype.take/implementation.js", "./Iterator.prototype.take/shim": "./Iterator.prototype.take/shim.js", "./Iterator.prototype.drop": "./Iterator.prototype.drop/index.js", "./Iterator.prototype.drop/auto": "./Iterator.prototype.drop/auto.js", "./Iterator.prototype.drop/polyfill": "./Iterator.prototype.drop/polyfill.js", "./Iterator.prototype.drop/implementation": "./Iterator.prototype.drop/implementation.js", "./Iterator.prototype.drop/shim": "./Iterator.prototype.drop/shim.js", "./Iterator.prototype.flatMap": "./Iterator.prototype.flatMap/index.js", "./Iterator.prototype.flatMap/auto": "./Iterator.prototype.flatMap/auto.js", "./Iterator.prototype.flatMap/polyfill": "./Iterator.prototype.flatMap/polyfill.js", "./Iterator.prototype.flatMap/implementation": "./Iterator.prototype.flatMap/implementation.js", "./Iterator.prototype.flatMap/shim": "./Iterator.prototype.flatMap/shim.js", "./Iterator.prototype.reduce": "./Iterator.prototype.reduce/index.js", "./Iterator.prototype.reduce/auto": "./Iterator.prototype.reduce/auto.js", "./Iterator.prototype.reduce/polyfill": "./Iterator.prototype.reduce/polyfill.js", "./Iterator.prototype.reduce/implementation": "./Iterator.prototype.reduce/implementation.js", "./Iterator.prototype.reduce/shim": "./Iterator.prototype.reduce/shim.js", "./Iterator.prototype.toArray": "./Iterator.prototype.toArray/index.js", "./Iterator.prototype.toArray/auto": "./Iterator.prototype.toArray/auto.js", "./Iterator.prototype.toArray/polyfill": "./Iterator.prototype.toArray/polyfill.js", "./Iterator.prototype.toArray/implementation": "./Iterator.prototype.toArray/implementation.js", "./Iterator.prototype.toArray/shim": "./Iterator.prototype.toArray/shim.js", "./Iterator.prototype.forEach": "./Iterator.prototype.forEach/index.js", "./Iterator.prototype.forEach/auto": "./Iterator.prototype.forEach/auto.js", "./Iterator.prototype.forEach/polyfill": "./Iterator.prototype.forEach/polyfill.js", "./Iterator.prototype.forEach/implementation": "./Iterator.prototype.forEach/implementation.js", "./Iterator.prototype.forEach/shim": "./Iterator.prototype.forEach/shim.js", "./Iterator.prototype.some": "./Iterator.prototype.some/index.js", "./Iterator.prototype.some/auto": "./Iterator.prototype.some/auto.js", "./Iterator.prototype.some/polyfill": "./Iterator.prototype.some/polyfill.js", "./Iterator.prototype.some/implementation": "./Iterator.prototype.some/implementation.js", "./Iterator.prototype.some/shim": "./Iterator.prototype.some/shim.js", "./Iterator.prototype.every": "./Iterator.prototype.every/index.js", "./Iterator.prototype.every/auto": "./Iterator.prototype.every/auto.js", "./Iterator.prototype.every/polyfill": "./Iterator.prototype.every/polyfill.js", "./Iterator.prototype.every/implementation": "./Iterator.prototype.every/implementation.js", "./Iterator.prototype.every/shim": "./Iterator.prototype.every/shim.js", "./Iterator.prototype.find": "./Iterator.prototype.find/index.js", "./Iterator.prototype.find/auto": "./Iterator.prototype.find/auto.js", "./Iterator.prototype.find/polyfill": "./Iterator.prototype.find/polyfill.js", "./Iterator.prototype.find/implementation": "./Iterator.prototype.find/implementation.js", "./Iterator.prototype.find/shim": "./Iterator.prototype.find/shim.js", "./package.json": "./package.json" }, "scripts": { "prepack": "npmignore --auto --commentLines=autogenerated", "prepublishOnly": "safe-publish-latest", "prepublish": "not-in-publish || npm run prepublishOnly", "prelint": "es-shim-api --bound --multi --ignore-dirs=WrapForValidIteratorPrototype,IteratorHelperPrototype", "lint": "eslint --ext=js,mjs .", "postlint": "evalmd README.md", "pretest": "npm run lint", "test": "npm run tests-only", "tests-only": "nyc tape 'test/**/*.js'", "posttest": "aud --production", "version": "auto-changelog && git add CHANGELOG.md", "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" }, "repository": { "type": "git", "url": "git+https://github.com/es-shims/iterator-helpers.git" }, "keywords": [ "javascript", "ecmascript", "polyfill", "shim", "es-shims", "es-shim API", "Iterator", "helpers", "from", "map", "filter", "take", "drop", "flatMap", "reduce", "toArray", "forEach", "some", "every", "find" ], "author": "Jordan Harband ", "license": "MIT", "bugs": { "url": "https://github.com/es-shims/iterator-helpers/issues" }, "homepage": "https://github.com/es-shims/iterator-helpers#readme", "dependencies": { "asynciterator.prototype": "^1.0.0", "call-bind": "^1.0.6", "define-properties": "^1.2.1", "es-abstract": "^1.22.3", "es-errors": "^1.3.0", "es-set-tostringtag": "^2.0.2", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "globalthis": "^1.0.3", "has-property-descriptors": "^1.0.1", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "internal-slot": "^1.0.7", "iterator.prototype": "^1.1.2", "safe-array-concat": "^1.1.0" }, "devDependencies": { "@es-shims/api": "^2.4.2", "@ljharb/eslint-config": "^21.1.0", "aud": "^2.0.4", "auto-changelog": "^2.4.0", "es-value-fixtures": "^1.4.2", "eslint": "=8.8.0", "eslint-plugin-import": "^2.29.1", "evalmd": "^0.0.19", "for-each": "^0.3.3", "functions-have-names": "^1.2.3", "has-strict-mode": "^1.0.1", "has-tostringtag": "^1.0.2", "in-publish": "^2.0.1", "iterate-iterator": "^1.0.2", "make-generator-function": "^2.0.0", "mock-property": "^1.0.3", "npmignore": "^0.3.1", "nyc": "^10.3.2", "object-inspect": "^1.13.1", "safe-publish-latest": "^2.0.0", "tape": "^5.7.4" }, "auto-changelog": { "output": "CHANGELOG.md", "template": "keepachangelog", "unreleased": false, "commitLimit": false, "backfillLimit": false, "hideCredit": true }, "publishConfig": { "ignore": [ ".github/workflows" ] }, "engines": { "node": ">= 0.4" } }