UNPKG

through2

Version:

Tiny utilities for inserting transformation logic into Node.js stream and Web Streams pipelines

143 lines (142 loc) 3.69 kB
{ "name": "through2", "version": "5.0.1", "description": "Tiny utilities for inserting transformation logic into Node.js stream and Web Streams pipelines", "license": "MIT", "type": "module", "main": "./through2.js", "exports": { ".": { "types": "./types/through2.d.ts", "import": "./through2.js", "require": "./through2.js" }, "./web": { "types": "./types/web.d.ts", "import": "./web.js", "require": "./web.js" } }, "types": "./types/through2.d.ts", "scripts": { "lint": "standard", "build:types": "tsc --build", "build": "npm run build:types", "test:node": "polendina-node bare-async test/test.js test/web.js", "test:browser": "polendina --cleanup --runner=bare-async test/test.js test/web.js", "test:ci": "npm run lint && npm run test:node && npm run test:browser", "test": "npm run lint && npm run test:node" }, "repository": { "type": "git", "url": "https://github.com/rvagg/through2.git" }, "homepage": "https://github.com/rvagg/through2", "keywords": [ "stream", "transform", "transformstream", "web-streams", "async-iterable", "pipeline" ], "author": "Rod Vagg <r@va.gg> (https://github.com/rvagg)", "dependencies": { "readable-stream": "^4.7.0" }, "devDependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^12.0.6", "@semantic-release/npm": "^13.1.5", "@semantic-release/release-notes-generator": "^14.1.0", "@types/node": "^25.6.0", "conventional-changelog-conventionalcommits": "^9.3.1", "polendina": "^3.2.21", "semantic-release": "^25.0.3", "standard": "^17.1.2", "typescript": "^6.0.3" }, "release": { "branches": [ "master" ], "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "conventionalcommits", "releaseRules": [ { "breaking": true, "release": "major" }, { "revert": true, "release": "patch" }, { "type": "feat", "release": "minor" }, { "type": "fix", "release": "patch" }, { "type": "chore", "release": "patch" }, { "type": "docs", "release": "patch" }, { "type": "test", "release": "patch" }, { "scope": "no-release", "release": false } ] } ], [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "chore", "section": "Trivial Changes" }, { "type": "docs", "section": "Trivial Changes" }, { "type": "test", "section": "Tests" } ] } } ], "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/github", "@semantic-release/git" ] } }