UNPKG

asyncerator

Version:

Provide supporting types for AsyncIterable/AsyncIterableIterators, promisified stream.pipeline implementation, and Array-like utility operators, sources and sinks.

82 lines (81 loc) 2.77 kB
{ "name": "asyncerator", "version": "4.0.2", "description": "Provide supporting types for AsyncIterable/AsyncIterableIterators, promisified stream.pipeline implementation, and Array-like utility operators, sources and sinks.", "keywords": [ "stream", "pipeline", "stream.pipeline", "AsyncIterator", "AsyncIterable", "AsyncIterableIterator" ], "homepage": "https://github.com/checkdigit/asyncerator#readme", "bugs": { "url": "https://github.com/checkdigit/asyncerator/issues" }, "repository": { "type": "git", "url": "git+https://github.com/checkdigit/asyncerator.git" }, "license": "MIT", "author": "Check Digit, LLC", "sideEffects": false, "type": "module", "exports": { ".": { "types": "./dist-types/index.d.ts", "import": "./dist-mjs/index.mjs", "default": "./dist-mjs/index.mjs" } }, "files": [ "src", "dist-types", "dist-mjs", "!src/**/*.test.ts", "!src/**/*.spec.ts", "!dist-types/**/*.test.d.ts", "!dist-types/**/*.spec.d.ts", "!dist-mjs/**/*.test.mjs", "!dist-mjs/**/*.spec.mjs", "SECURITY.md" ], "scripts": { "build:dist-mjs": "rimraf dist-mjs && npx builder --type=module --sourceMap --outDir=dist-mjs && node dist-mjs/index.mjs", "build:dist-types": "rimraf dist-types && npx builder --type=types --outDir=dist-types", "ci:compile": "tsc --noEmit", "ci:coverage": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=true", "ci:lint": "npm run lint", "ci:style": "npm run prettier", "ci:test": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=false", "lint": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning\" eslint --max-warnings 0 .", "lint:fix": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning\" eslint . --fix", "prepare": "", "prepublishOnly": "npm run build:dist-types && npm run build:dist-mjs", "prettier": "prettier --ignore-path .gitignore --list-different .", "prettier:fix": "prettier --ignore-path .gitignore --write .", "test": "npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style" }, "prettier": "@checkdigit/prettier-config", "jest": { "preset": "@checkdigit/jest-config" }, "dependencies": { "debug": "^4.3.7" }, "devDependencies": { "@checkdigit/eslint-config": "^10.1.0", "@checkdigit/jest-config": "^6.0.2", "@checkdigit/prettier-config": "^5.5.1", "@checkdigit/typescript-config": "^8.0.0", "@types/debug": "^4.1.12", "@types/uuid": "^10.0.0", "get-port": "^7.1.0", "rimraf": "^6.0.1", "uuid": "^10.0.0" }, "engines": { "node": ">=20.17" } }