-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 930 Bytes
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
41
42
{
"name": "babel-plugin-proper-tail-calls",
"version": "1.0.2",
"description": "A Babel plugin that optimizes tail recursion",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:update": "jest -u"
},
"author": "Alec Davidson",
"license": "ISC",
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.9.0"
},
"dependencies": {
"@babel/core": "^7.7.4",
"@babel/template": "^7.7.4"
},
"keywords": [
"functional",
"tail call",
"tail calls",
"babel",
"plugin",
"scala",
"haskell",
"clojure",
"recursion"
]
}