babel-plugin-recursive-tail-calls
Version:
A babel plugin for performing tail call optimization in recursive functions.
41 lines (40 loc) • 1.02 kB
JSON
{
"name": "babel-plugin-recursive-tail-calls",
"version": "1.0.0",
"description": "A babel plugin for performing tail call optimization in recursive functions.",
"keywords": [
"tail call optimization",
"tco",
"tail calls",
"babel-plugin"
],
"main": "dist/plugin.js",
"files": [
"dist"
],
"license": "LGPL-3.0-or-later",
"private": false,
"type": "module",
"scripts": {
"transform": "tsx examples/bin/transformer",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"build": "tsc",
"prepack": "yarn build",
"prettify": "prettier -w ."
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/template": "^7.24.0",
"@babel/types": "^7.24.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"tsx": "^4.9.3",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/ontanj/babel-plugin-recursive-tail-calls"
}
}