UNPKG

callyflower

Version:

A collection of lightweight higher order functions to add customizable event handling to a function execution flow.

52 lines (51 loc) 1.39 kB
{ "name": "callyflower", "version": "0.9.0", "description": "A collection of lightweight higher order functions to add customizable event handling to a function execution flow.", "main": "dist/callyflower.cjs.js", "module": "dist/callyflower.esm.js", "browser": "dist/callyflower.min.js", "types": "dist/index.d.ts", "sideeffects": false, "files": [ "dist/**/*" ], "scripts": { "build": "rollup -c", "test": "vitest --globals", "lint": "eslint 'src/**/*.ts'", "format": "prettier --write 'src/**/*.ts'" }, "repository": { "type": "git", "url": "git+https://github.com/lordcraymen/CallyFlower.git" }, "keywords": [ "function", "lifecycle", "flow", "eventhandling", "onCall", "onCatch", "onResult" ], "author": "Florian Patzke", "license": "MIT", "bugs": { "url": "https://github.com/lordcraymen/CallyFlower/issues" }, "homepage": "https://github.com/lordcraymen/CallyFlower#readme", "devDependencies": { "@babel/preset-typescript": "^7.26.0", "@rollup/plugin-commonjs": "^28.0.2", "@rollup/plugin-node-resolve": "^16.0.0", "@rollup/plugin-terser": "^0.4.4", "@types/jest": "^29.5.14", "eslint": "^9.17.0", "prettier": "^3.4.2", "rollup": "^4.28.1", "rollup-plugin-typescript2": "^0.36.0", "typescript": "^5.7.2", "vitest": "^2.1.8" } }