-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "equivalent-exchange",
"version": "1.13.1",
"description": "Transmute one JavaScript string into another by way of mutating its AST. Powered by [babel](https://babeljs.io/) and [recast](https://www.npmjs.com/package/recast).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"build": "tsc && cp dist/*.d.ts api/ && prettier --write api/*.d.ts"
},
"keywords": [
"ast",
"transform",
"codemod",
"babel",
"recast",
"transmute",
"transmutation"
],
"author": "Lily Skye <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/suchipi/equivalent-exchange.git"
},
"devDependencies": {
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/generator": "^7.26.2",
"@babel/parser": "^7.26.2",
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"@types/babel__core": "^7.20.5",
"recast": "^0.23.9"
},
"prettier": {}
}