UNPKG

lambda-calculus-with-js

Version:

Using JS' anonymous functions to perform lambda calculus

66 lines 1.54 kB
{ "name": "lambda-calculus-with-js", "version": "1.2.0", "description": "Using JS' anonymous functions to perform lambda calculus", "keywords": [ "lambda-calculus", "pure", "untyped", "lambda", "dsl", "internal-dsl" ], "author": "e0selmy4v", "license": "GPL-2.0-or-later", "main": "index", "types": "index", "devDependencies": { "prettier": "^3.3.3", "globals": "^15.13.0", "typescript-eslint": "^8.17.0", "eslint": "^9.14.0", "@eslint/js": "^9.16.0", "@eslint/markdown": "^6.2.1", "@types/eslint": "^9.6.1", "@types/eslint__js": "^8.42.3", "eslint-config-accurtype-style": "^0.2.3", "rimraf": "latest", "esm-entry": "latest", "colortape": "latest", "tape": "latest", "@types/tape": "latest", "typescript": "latest", "tsx": "latest" }, "files": [ "*", "!tsconfig.json", "!**/*.ts", "**/*.d.ts", "!*.swp", "!pnpm-lock.yaml" ], "type": "module", "repository": { "type": "git", "url": "git+https://github.com/E0SelmY4V/kfc-lambda.git" }, "prettier": { "printWidth": 200, "tabWidth": 4, "useTabs": true, "semi": true, "singleQuote": true, "jsxSingleQuote": false, "trailingComma": "all" }, "scripts": { "prefmt": "prettier -w .", "fmt": "eslint . --fix", "prelint": "prettier -c .", "lint": "eslint .", "build": "tsc", "clear": "rimraf -g **/*.{d.ts,js} & git restore eslint.config.js", "test": "tsx test.ts | colortape" } }