UNPKG

eek-whales

Version:

a collection of JS/TS modules for functional programming

52 lines (51 loc) 1.26 kB
{ "name": "eek-whales", "version": "0.3.0", "description": "a collection of JS/TS modules for functional programming", "type": "module", "files": [ "dist/index.js", "dist/index.d.ts", "dist/index.js.map" ], "main": "./dist/index.js", "exports": "./dist/index.js", "types": "./dist/index.d.ts", "scripts": { "build": "tsup src/index.ts --format esm --dts --sourcemap --no-splitting --clean", "dev": "tsup src/index.ts --format esm --dts --sourcemap --no-splitting --clean --watch", "lint": "tsc", "test": "tsup src/index.spec.ts --format esm --no-splitting --clean --silent --onSuccess 'node dist/index.spec.js'", "clean": "rm -rf dist node_modules" }, "keywords": [ "functional", "utilities", "utils", "fp", "point-free", "curried", "fantasy-land", "predicate", "ADT", "algebraic", "combinator", "category", "lambda", "calculus", "monoid", "setoid" ], "author": "Randy Schneck <i@rasch.co>", "license": "ISC", "repository": { "type": "git", "url": "https://github.com/rasch/eek-whales.git" }, "devDependencies": { "@types/node": "^18.14.0", "fvb": "^0.1.0", "tsup": "^6.6.3", "typescript": "^4.9.5" } }