-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "estree-to-babel",
"version": "10.3.0",
"type": "commonjs",
"author": "coderaiser <[email protected]> (https://github.com/coderaiser)",
"description": "convert estree ast to babel",
"homepage": "http://github.com/coderaiser/estree-to-babel",
"main": "lib/estree-to-babel.js",
"repository": {
"type": "git",
"url": "git+https://github.com/coderaiser/estree-to-babel.git"
},
"scripts": {
"test": "madrun test",
"test:dts": "madrun test:dts",
"watch:test": "madrun watch:test",
"lint": "madrun lint",
"fresh:lint": "madrun fresh:lint",
"lint:fresh": "madrun lint:fresh",
"fix:lint": "madrun fix:lint",
"coverage": "madrun coverage",
"report": "madrun report",
"fixture": "madrun fixture"
},
"dependencies": {
"@putout/babel": "^3.0.0"
},
"keywords": [
"ast",
"convert",
"estree",
"babel",
"espree"
],
"devDependencies": {
"@typescript-eslint/typescript-estree": "^8.11.0",
"acorn": "^8.0.1",
"acorn-stage3": "^4.0.0",
"c8": "^10.1.2",
"check-dts": "^0.8.0",
"eslint": "^9.8.0",
"eslint-plugin-putout": "^23.1.0",
"espree": "^10.0.1",
"estree-util-attach-comments": "^3.0.0",
"madrun": "^10.0.0",
"meriyah": "^6.0.2",
"nodemon": "^3.0.1",
"putout": "^37.13.0",
"supertape": "^10.1.0",
"typescript": "^5.1.3"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}