iteragain
Version:
Javascript Iterable/Iterator/Generator-function utilities.
114 lines (113 loc) • 3.73 kB
JSON
{
"name": "iteragain",
"version": "4.2.1",
"author": "Daniel (Oakman) Brown",
"repository": {
"type": "git",
"url": "git+https://github.com/danieloakman/iteragain.git"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm5/index.js",
"devDependencies": {
"@danoaky/js-utils": "^0.30.0",
"@types/benchmark": "^2.1.5",
"@types/bun": "^1.3.11",
"@types/node": "^22.13.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"benchmark": "^2.1.4",
"changie": "^1.21.1",
"concurrently": "^9.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"gh-pages": "^6.3.0",
"iterare": "^1.2.1",
"iterplus": "^3.0.2",
"ix": "^6.0.0",
"jsr": "^0.13.3",
"more-node-fs": "^2.0.2",
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.2",
"typedoc": "^0.27.9",
"typedoc-plugin-remove-references": "0.0.6",
"typedoc-plugin-rename-defaults": "^0.7.2",
"typescript": "^5.7.3"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/es5/index.js"
},
"./internal/*": {
"types": "./dist/types/internal/*.d.ts",
"node": "./dist/cjs/internal/*.js",
"require": "./dist/cjs/internal/*.js",
"import": "./dist/esm/internal/*.js",
"default": "./dist/es5/internal/*.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"node": "./dist/cjs/*.js",
"require": "./dist/cjs/*.js",
"import": "./dist/esm/*.js",
"default": "./dist/es5/*.js"
},
"./package.json": "./package.json"
},
"bugs": {
"url": "https://github.com/danieloakman/iteragain/issues"
},
"description": "Javascript Iterable/Iterator/Generator-function utilities.",
"es2015": "./dist/esm/index.js",
"homepage": "https://www.npmjs.com/package/iteragain",
"keywords": [
"iterator",
"iterable",
"IterableIterator",
"itertools",
"iteration",
"iter",
"generator",
"iterutil",
"iteragain",
"es6",
"es2015",
"modules",
"map",
"filter",
"reduce",
"lazy",
"array",
"utility",
"util"
],
"license": "ISC",
"scripts": {
"build": "concurrently \"tsc -p tsconfig.json\" \"tsc -p tsconfig.es5.json\" \"tsc -p tsconfig.esm.json\" \"tsc -p tsconfig.types.json\"",
"clean": "rimraf dist iteragain*.tgz",
"asyncify": "ts-node ./scripts/asyncify.ts",
"asyncify:watch": "ts-node ./scripts/asyncify.ts -w",
"asyncify:clean": "ts-node ./scripts/asyncify.ts -c",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\"",
"test": "bun test ./src",
"check": "tsc -p tsconfig.test.json",
"check:watch": "bun run check --watch",
"coverage": "bun run test --coverage",
"bm": "ts-node src/benchmark/index.bm.ts",
"bm:prof": "node -r ts-node/register --prof src/benchmark/index.bm.ts",
"docs:build": "typedoc --plugin typedoc-plugin-remove-references --includeVersion --entryPointStrategy expand src/",
"docs:deploy": "bun run docs:build && bun gh-pages -d docs --nojekyll -u \"Daniel Oakman <42539848+danieloakman@users.noreply.github.com>\"",
"v:patch": "npm version patch -f -m \"Upgrade package version to v%s\"",
"v:minor": "npm version minor -f -m \"Upgrade package version to v%s\"",
"v:major": "npm version major -f -m \"Upgrade package version to v%s\"",
"preversion": "bun run check && bun run lint && bun run coverage",
"postversion": "git push --follow-tags"
},
"sideEffects": false,
"types": "./dist/types/index.d.ts"
}