function-pipeline
Version:
Similar to the Unix `|` operator; returns a function that invokes the given series of functions whose output is subsequently passed to the next function in the series.
57 lines (56 loc) • 1.77 kB
JSON
{
"name": "function-pipeline",
"description": "Similar to the Unix `|` operator; returns a function that invokes the given series of functions whose output is subsequently passed to the next function in the series.",
"version": "0.1.0",
"author": "Wil Moore III <wil.moore@wilmoore.com>",
"bugs": {
"url": "https://github.com/wilmoore/function-pipeline.js/issues"
},
"dependencies": {},
"devDependencies": {
"dependency-check": "^2.4.0",
"fixpack": "^2.2.0",
"istanbul": "^0.3.13",
"nodemon": "^1.3.7",
"standard": "^3.7.1",
"tap-spec": "^2.2.2",
"tape": "^4.0.0",
"tape-catch": "^1.0.4"
},
"homepage": "https://github.com/wilmoore/function-pipeline.js",
"keywords": [
"apply",
"chain",
"chained",
"compose",
"composition",
"flow",
"function",
"function-pipeline",
"functional",
"higher-order",
"pipe",
"pipeline",
"series",
"unix"
],
"license": "MIT",
"main": "index.js",
"preferGlobal": false,
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/wilmoore/function-pipeline.js"
},
"scripts": {
"cover": "istanbul cover test.js",
"dependency-check": "dependency-check ./package.json && dependency-check ./package.json --unused --no-dev",
"dev": "nodemon -x 'npm run test --silent' -e 'js json'",
"fixpack": "fixpack",
"release-major": "npm version major && git push --follow-tags && npm publish",
"release-minor": "npm version minor && git push --follow-tags && npm publish",
"release-patch": "npm version patch && git push --follow-tags && npm publish",
"standard": "standard",
"test": "npm run dependency-check && npm run standard --silent && node test.js | tap-spec"
}
}