Initial commit, 90% there

This commit is contained in:
mdares
2025-12-02 16:27:21 +00:00
commit 755028af7e
7353 changed files with 1759505 additions and 0 deletions

32
.node-red/node_modules/pipe-functions/package.json generated vendored Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "pipe-functions",
"version": "1.3.0",
"description": "Pipe functions in a Unix-like style. It supports Promises (async) anywhere in the pipeline and every step will be executed sequentially. The return (resolve in case of Promises) of each function will be passed in as an argument to the next one",
"homepage": "https://github.com/DiegoZoracKy/pipe-functions/",
"main": "./lib/pipe.js",
"author": {
"name": "Diego ZoracKy",
"email": "diego.zoracky@gmail.com",
"url": "https://github.com/DiegoZoracKy/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/DiegoZoracKy/pipe-functions.git"
},
"keywords": [
"pipe",
"pipe functions",
"promises",
"sync",
"async"
],
"scripts": {
"test": "mocha ./tests/main.test.js",
"test:all": "mocha ./tests -b"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2"
}
}