-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.63 KB
/
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
41
42
43
44
{
"name": "babel-learning",
"version": "1.0.0",
"description": "See https://lihautan.com/creating-custom-javascript-syntax-with-babel",
"main": "index.js",
"scripts": {
"b": "babel src --out-dir lib",
"ba": "babel src --out-dir lib --plugins=@babel/plugin-transform-arrow-functions",
"bab": "babel src --out-dir lib --presets=@babel/env --plugins=@babel/plugin-transform-unicode-sets-regex",
"clean": "rm -rf lib",
"first-plugin": "babel src/foo.js --plugins=./play/first-plugin.mjs",
"hello-plugin": "babel src/foo.js --plugins=./play/hello-plugin.mjs",
"save": "git add . && git commit -m 'save' && git push"
},
"keywords": [],
"author": "Casiano Rodriguez Leon <crguezl@ull.edu.es> (https://crguezl.github.io/)",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-proposal-record-and-tuple": "^7.24.7",
"@babel/preset-env": "^7.24.6",
"@babel/preset-flow": "^7.24.7",
"babel-plugin-implicit-return": "^1.0.1",
"babel-plugin-proposal-pattern-matching": "^1.0.3",
"babel-plugin-syntax-hermes-parser": "^0.23.1",
"babel-plugin-tester": "^11.0.4",
"flow-bin": "^0.238.3",
"jest": "^29.7.0"
},
"dependencies": {
"@babel/traverse": "^7.24.7",
"@bloomberg/record-tuple-polyfill": "^0.0.4",
"babel-eslint": "^10.1.0",
"babel-plugin-idx": "^3.0.3",
"babel-template": "^6.26.0",
"compact-js-ast": "^4.1.2",
"currying": "file:src/tan-liu-article/currying",
"estree-to-babel": "^10.1.0",
"idx": "^3.0.3",
"recast": "^0.23.9"
}
}