UNPKG

iterablefu

Version:

Small, chainable, set of functions like range, map, reduce, filter, zip, for iterable objects.

78 lines (77 loc) 2.13 kB
{ "name": "iterablefu", "version": "0.4.5", "description": "Small, chainable, set of functions like range, map, reduce, filter, zip, for iterable objects.", "keywords": [ "iterable", "iterator", "generator", "chainable", "functional", "transducers" ], "homepage": "https://github.com/toolbuilder/iterablefu#readme", "bugs": { "url": "https://github.com/toolbuilder/iterablefu/issues" }, "repository": { "type": "git", "url": "https://github.com/toolbuilder/iterablefu.git" }, "license": "MIT", "type": "module", "exports": { "./src/*": { "require": "./cjs/*", "default": "./src/*" }, ".": { "require": "./cjs/chainable.js", "default": "./src/chainable.js" } }, "main": "cjs/chainable.js", "module": "src/chainable.js", "files": [ "cjs", "src" ], "scripts": { "build": "run-s build:cjs build:docs", "build:cjs": "rollup -c rollup.config.cjs.js", "build:docs": "run-s build:docs:clean build:docs:generate", "build:docs:clean": "rimraf docs", "build:docs:generate": "node scripts/docgen.js", "check": "run-s build check:*", "check:packagejson": "npmPkgJsonLint .", "check:packfile": "rollup -c rollup.config.test.js", "check:src": "standard src test", "check:test": "run-s test", "check:uncommitted": "uncommitted", "prerelease": "run-s check", "release": "commit-and-tag-version", "test": "pta \"test/**/*test.js\"" }, "dependencies": { "@toolbuilder/make-factory": "^0.1.5" }, "devDependencies": { "@toolbuilder/package-json-lint-config": "^0.1.1", "@toolbuilder/rollup-plugin-test-tools": "^1.1.0", "commit-and-tag-version": "^12.5.0", "documentation": "^13.2.5", "markedpp": "^1.4.0", "multistream": "^4.1.0", "npm-package-json-lint": "^8.0.0", "npm-run-all2": "^7.0.1", "pta": "1.2.0", "rimraf": "^6.0.1", "rollup": "^4.24.4", "standard": "^17.1.2", "uncommitted": "^1.0.0", "zora": "5.0.3" }, "npmpackagejsonlint": { "extends": "@toolbuilder/package-json-lint-config" } }