callbag-take-while
Version:
👜 Callbag operator which emits values emitted by the source as long as each value satisfies the given predicate, and then completes as soon as predicate is not satisfied.
51 lines (50 loc) • 1.47 kB
JSON
{
"name": "callbag-take-while",
"version": "2.0.0",
"description": "👜 Callbag operator which emits values emitted by the source as long as each value satisfies the given predicate, and then completes as soon as predicate is not satisfied.",
"main": "./dist/callbag-take-while.cjs.js",
"module": "./dist/callbag-take-while.esm.js",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"test": "jest --env=node",
"prebuild": "rimraf dist",
"build": "rollup -c",
"preversion": "npm test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/callbag-take-while.git"
},
"keywords": [
"callbag",
"callbags"
],
"author": "Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andarist/callbag-take-while/issues"
},
"homepage": "https://github.com/Andarist/callbag-take-while#readme",
"dependencies": {
"callbag": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"callbag-for-each": "^1.1.0",
"callbag-from-iter": "^1.2.0",
"callbag-pipe": "^1.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2"
}
}