functionalscript
Version:
FunctionalScript is a purely functional subset of JavaScript
52 lines • 1.41 kB
JSON
{
"name": "functionalscript",
"version": "0.8.2",
"type": "module",
"files": [
"**/*.js",
"**/*.d.ts"
],
"description": "FunctionalScript is a purely functional subset of JavaScript",
"scripts": {
"prepack": "tsc --NoEmit false",
"git-clean": "git clean -xf",
"test20": "npm run prepack && node --test",
"test": "tsc && node --test --experimental-strip-types --experimental-test-coverage --test-coverage-include=**/module.f.ts",
"index": "node ./dev/index/module.ts",
"fsc": "node ./fsc/module.ts",
"fst": "node ./dev/tf/module.ts",
"ci-update": "node ./ci/module.ts",
"update": "npm install && npm run index && npm run ci-update"
},
"engines": {
"node": ">=20"
},
"bin": {
"fsc": "fsc/module.js",
"fst": "dev/tf/module.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/functionalscript/functionalscript.git"
},
"author": "Sergey Shandar",
"license": "MIT",
"keywords": [
"lambda",
"functional-programming",
"closure",
"pure-functional",
"typescript",
"programming-language",
"lazy-evaluation"
],
"bugs": {
"url": "https://github.com/functionalscript/functionalscript/issues"
},
"homepage": "https://github.com/functionalscript/functionalscript#readme",
"devDependencies": {
"@playwright/test": "*",
"@types/node": "*",
"typescript": "*"
}
}