| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "stream-chain",
- "version": "3.0.0",
- "description": "Chain functions as transform streams.",
- "type": "commonjs",
- "main": "src/index.js",
- "exports": {
- ".": "./src/index.js",
- "./*.js": "./src/*.js",
- "./utils/*": "./src/utils/*.js",
- "./asStream.js": "./src/asStream.js",
- "./defs.js": "./src/defs.js",
- "./fun.js": "./src/fun.js",
- "./gen.js": "./src/gen.js",
- "./utils/fold.js": "./src/utils/fold.js",
- "./utils/fromIterable.js": "./src/utils/fromIterable.js",
- "./utils/reduce.js": "./src/utils/reduce.js",
- "./utils/reduceStream.js": "./src/utils/reduceStream.js",
- "./utils/scan.js": "./src/utils/scan.js",
- "./utils/skip.js": "./src/utils/skip.js",
- "./utils/skipWhile.js": "./src/utils/skipWhile.js",
- "./utils/take.js": "./src/utils/take.js",
- "./utils/takeWhile.js": "./src/utils/takeWhile.js",
- "./utils/takeWithSkip.js": "./src/utils/takeWithSkip.js"
- },
- "scripts": {
- "debug": "node --inspect-brk tests/tests.js",
- "test": "tape6 --flags DOF"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/uhop/stream-chain.git"
- },
- "keywords": [
- "stream",
- "chain"
- ],
- "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (http://lazutkin.com/)",
- "license": "BSD-3-Clause",
- "bugs": {
- "url": "https://github.com/uhop/stream-chain/issues"
- },
- "homepage": "https://github.com/uhop/stream-chain#readme",
- "devDependencies": {
- "tape6": "file:../tape6"
- },
- "files": [
- "src/*.js",
- "src/utils/*.js"
- ],
- "tape6": {
- "tests": [
- "/tests/test-*.mjs"
- ]
- },
- "dependencies": {
- "tape-six": "^0.9.1"
- }
- }
|