UNPKG

iteragain

Version:

Javascript Iterable/Iterator/Generator-function utilities.

131 lines (130 loc) 4.29 kB
{ "name": "iteragain", "version": "4.1.6", "description": "Javascript Iterable/Iterator/Generator-function utilities.", "sideEffects": false, "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 **.ts", "test": "ts-mocha src/**/*.test.ts --reporter spec", "test:debug": "pnpm run test --inspect", "check": "tsc -p tsconfig.test.json", "check:watch": "pnpm run check --watch", "coverage": "nyc ts-mocha src/test/**.test.ts", "bm": "ts-node src/benchmark/index.bm.ts", "bm:prof": "node -r ts-node/register --prof src/benchmark/index.bm.ts", "new:iterator": "ts-node ./scripts/new-iterator.ts", "new:function": "ts-node ./scripts/new-function.ts", "new:test": "ts-node ./scripts/new-test.ts", "docs:build": "typedoc --plugin typedoc-plugin-remove-references --includeVersion --entryPointStrategy expand src/", "docs:deploy": "pnpm run docs:build && pnpm gh-pages -d docs --nojekyll -u \"Daniel Oakman <42539848+danieloakman@users.noreply.github.com>\"", "v:patch": "pnpm version patch -f -m \"Upgrade package version to v%s\"", "v:minor": "pnpm version minor -f -m \"Upgrade package version to v%s\"", "v:major": "pnpm version major -f -m \"Upgrade package version to v%s\"", "prepare": "husky", "preversion": "pnpm check && pnpm lint && pnpm coverage", "postversion": "git push --follow-tags" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/mocha": "^10.0.7", "@types/node": "^20.14.8", "@typescript-eslint/eslint-plugin": "^7.13.1", "@typescript-eslint/parser": "^7.13.1", "benchmark": "^2.1.4", "changie": "^1.19.0", "concurrently": "^8.2.2", "eslint": "^8.57.0", "eslint-config-prettier": "^8.10.0", "gh-pages": "^6.1.1", "husky": "^9.0.11", "iterare": "^1.2.1", "iterplus": "^3.0.2", "ix": "^6.0.0", "js-utils": "https://github.com/danieloakman/js-utils/releases/download/v0.16.2/package.tgz", "jsr": "^0.13.2", "lint-staged": "^15.2.7", "mocha": "10.4.0", "more-node-fs": "^2.0.2", "nyc": "^17.0.0", "prettier": "^3.3.2", "pretty-quick": "^4.0.0", "rimraf": "^5.0.7", "rxjs": "^7.8.1", "ts-mocha": "^10.0.0", "ts-node": "^10.9.2", "typedoc": "^0.26.2", "typedoc-plugin-remove-references": "0.0.6", "typedoc-plugin-rename-defaults": "^0.7.1", "typescript": "^5.5.2" }, "types": "./dist/esm/index.d.ts", "main": "./dist/cjs/index.js", "module": "./dist/esm5/index.js", "es2015": "./dist/esm/index.js", "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" }, "repository": { "type": "git", "url": "git+https://github.com/danieloakman/iteragain.git" }, "author": "Daniel Oakman", "license": "ISC", "bugs": { "url": "https://github.com/danieloakman/iteragain/issues" }, "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" ], "lint-staged": { "*.ts": [ "eslint --cache --fix" ] } }