Initial commit

This commit is contained in:
Marcelo
2025-11-20 15:27:34 -06:00
commit cc72c9fc5d
3221 changed files with 737477 additions and 0 deletions

32
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"
}
}