{ "name": "it-pushable", "version": "3.2.3", "description": "An iterable that you can push values into", "author": "Alan Shaw", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/alanshaw/it-pushable#readme", "repository": { "type": "git", "url": "git+https://github.com/alanshaw/it-pushable.git" }, "bugs": { "url": "https://github.com/alanshaw/it-pushable/issues" }, "keywords": [ "iterable", "iterator", "push", "pushable" ], "type": "module", "types": "./dist/src/index.d.ts", "files": [ "src", "dist", "!dist/test", "!**/*.tsbuildinfo" ], "exports": { ".": { "types": "./dist/src/index.d.ts", "import": "./dist/src/index.js" } }, "eslintConfig": { "extends": "ipfs", "parserOptions": { "project": true, "sourceType": "module" } }, "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": "docs", "release": "patch" }, { "type": "test", "release": "patch" }, { "type": "deps", "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": "Documentation" }, { "type": "deps", "section": "Dependencies" }, { "type": "test", "section": "Tests" } ] } } ], "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/github", "@semantic-release/git" ] }, "scripts": { "clean": "aegir clean", "lint": "aegir lint", "dep-check": "aegir dep-check", "build": "aegir build", "test": "aegir test -f ./dist/test", "test:chrome": "aegir test -t browser --cov", "test:chrome-webworker": "aegir test -t webworker", "test:firefox": "aegir test -t browser -- --browser firefox", "test:firefox-webworker": "aegir test -t webworker -- --browser firefox", "test:node": "aegir test -t node --cov", "test:electron-main": "aegir test -t electron-main", "release": "aegir release", "docs": "aegir docs" }, "dependencies": { "p-defer": "^4.0.0" }, "devDependencies": { "@types/fast-fifo": "^1.0.0", "aegir": "^41.0.5", "it-all": "^3.0.1", "it-pipe": "^3.0.1", "uint8arraylist": "^2.0.0" } }