UNPKG

pipio

Version:

Chain functions together and handle a complex workflow

67 lines 1.69 kB
{ "name": "pipio", "version": "0.1.7", "description": "Chain functions together and handle a complex workflow", "keywords": [ "cor", "pipe", "functional", "compose", "chain" ], "type": "commonjs", "files": [ "dist", "LICENSE", "README.md", "package.json", "package-lock.json" ], "main": "./dist/require/index.js", "module": "./dist/import/index.js", "types": "./dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "require": "./dist/require/index.js", "import": "./dist/import/index.js" } }, "scripts": { "clean": "rimraf dist", "compile:require": "tsc --project ./tsconfig.build.require.json", "compile:import": "tsc --project ./tsconfig.build.import.json", "compile": "run-s compile:require compile:import", "build": "run-s clean compile", "prepublishOnly": "npm run build", "test": "jest" }, "author": { "name": "Hamed Shirzadpour", "email": "shirzadpour@outlook.com", "url": "https://github.com/ham3dz" }, "bugs": { "url": "https://github.com/ham3dz/pipio/issues" }, "homepage": "https://github.com/ham3dz/pipio#readme", "repository": { "type": "git", "url": "git+https://github.com/ham3dz/pipio.git" }, "license": "MIT", "devDependencies": { "@types/jest": "^29.5.5", "@types/node": "^18.17.19", "eslint": "~8.15.0", "eslint-config-prettier": "8.1.0", "jest": "^29.4.1", "jest-environment-node": "^29.4.1", "npm-run-all": "^4.1.5", "prettier": "^2.6.2", "rimraf": "^5.0.1", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "typescript": "^5.2.2" } }