UNPKG

@7urtle/lambda

Version:

Functional programming library in JavaScript.

67 lines (66 loc) 1.9 kB
{ "name": "@7urtle/lambda", "version": "1.4.3", "description": "Functional programming library in JavaScript.", "type": "module", "module": "./src/index.js", "sideEffects": false, "exports": { "module": "./src/index.js", "import": "./src/index.js", "require": "./dist/lambda.min.cjs", "browser": "./dist/lambda.min.js" }, "unpkg": "./dist/lambda.min.js", "jsdelivr": "./dist/lambda.min.js", "files": [ "dist/*", "src/*", "LICENSE", "README.md" ], "engines": { "node": ">=12.16" }, "scripts": { "build": "webpack --progress --mode production && node ./create-browser-build.js", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --silent", "maintain": "npx npm-check-updates -u & npm update && npm audit fix --force && npm test && npm run build", "analyze": "source-map-explorer 'dist/*.cjs'" }, "repository": { "type": "git", "url": "git+https://github.com/MeetMartin/lambda.git" }, "keywords": [ "JavaScript", "functional", "lambda", "functor", "monad" ], "author": "Martin Novak <ragnarecek@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/MeetMartin/lambda/issues" }, "homepage": "https://www.7urtle.com/", "devDependencies": { "@babel/core": "^7.24.5", "@babel/plugin-proposal-throw-expressions": "^7.24.1", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-transform-runtime": "^7.24.3", "@babel/preset-env": "^7.24.5", "@babel/runtime": "^7.24.5", "babel-jest": "^29.7.0", "babel-loader": "^9.1.3", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "jest-environment-node": "^29.7.0", "npm-check-updates": "^16.14.20", "source-map-explorer": "^2.5.3", "webpack": "^5.91.0", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.0.4" } }