-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1017 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"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"
}
}