Lambda calculus-like library written in TypeScript.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
jlc/package.json

20 lines
500 B

{
"name": "jlc",
"version": "1.0.0",
"main": "index.js",
"author": "Freywar Ulvnaudgari <freywar.ulvnaudgari@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rm -rf build && tsc",
"run": "yarn build && node build/index.js",
"debug": "yarn build && node --inspect-brk build/index.js",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}