This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.67 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "codemod",
"version": "0.8.0",
"description": "A codemod engine for Node.js libraries (jscodeshift, ts-morph, etc.)",
"type": "module",
"exports": null,
"repository": {
"type": "git",
"url": "https://github.com/codemod-com/codemod-engine-node"
},
"keywords": [
"codemod",
"jscodeshift",
"ts-morph",
"refactor",
"transform",
"cli",
"dependencies",
"migrate",
"eslint",
"prettier",
"progress",
"AST",
"next.js",
"ember",
"react"
],
"dependencies": {
"@babel/core": "^7.20.2",
"@babel/parser": "^7.22.10",
"@babel/preset-env": "^7.20.2",
"@babel/traverse": "7.23.2",
"@effect/schema": "0.27.0",
"@intuita-inc/filemod": "2.0.2",
"@intuita-inc/utilities": "1.1.0",
"@svgr/hast-util-to-babel-ast": "^7.0.0",
"applicationinsights": "^2.9.1",
"ast-types": "^0.14.2",
"axios": "^1.4.0",
"cosmiconfig": "^8.3.6",
"form-data": "^4.0.0",
"fast-glob": "3.3.2",
"jscodeshift": "^0.14.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-mdx": "^3.0.0",
"mdast-util-to-markdown": "^2.1.0",
"memfs": "^4.2.0",
"micromark-extension-mdxjs": "^2.0.0",
"minimatch": "^9.0.3",
"prettier": "^2.8.7",
"rehype-parse": "^8.0.4",
"tar": "^6.1.15",
"terminal-link": "^3.0.0",
"ts-morph": "18.0.0",
"unified": "^10.1.2",
"unist-util-filter": "^5.0.1",
"unist-util-visit": "^5.0.0",
"valibot": "^0.24.1",
"yargs": "^17.6.2"
},
"main": "./dist/index.cjs",
"bin": "./dist/index.cjs",
"devDependencies": {
"@types/babel__traverse": "^7.20.1",
"@types/jscodeshift": "^0.11.5",
"@types/node": "18.11.9",
"@types/prettier": "^2.7.3",
"@types/sinon": "^10.0.20",
"@types/tar": "^6.1.5",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"@vitest/coverage-v8": "^1.0.1",
"esbuild": "^0.17.14",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"sinon": "^17.0.0",
"ts-node": "^10.9.1",
"typescript": "5.2.2",
"vitest": "^1.0.1"
},
"packageManager": "[email protected]",
"scripts": {
"build": "esbuild ./src/index.ts --define:__CODEMODCOM_CLI_VERSION__=\\\"0.8.0\\\" --bundle --platform=node --target=node16 --minify --format=cjs --legal-comments=inline --outfile=./dist/index.cjs",
"lint:eslint": "eslint src --fix --ext ts",
"lint:prettier": "prettier --write .",
"package": "pkg --compress GZip .",
"test": "TEST=1 vitest run",
"coverage": "TEST=1 vitest run --coverage"
},
"pkg": {
"outputPath": "./package/"
},
"author": "Caartaa, Inc.",
"license": "Apache License, Version 2.0",
"files": [
"./dist/index.cjs",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}