75 lines
1.9 KiB
JSON
75 lines
1.9 KiB
JSON
{
|
|
"name": "jscodeshift",
|
|
"version": "17.1.2",
|
|
"description": "A toolkit for JavaScript codemods",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/jscodeshift.git"
|
|
},
|
|
"bugs": "https://github.com/facebook/jscodeshift/issues",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"clean": "rm -rf dist/",
|
|
"prepare": "yarn clean && cp -R src/ dist/",
|
|
"test": "jest --bail",
|
|
"release": "changeset publish"
|
|
},
|
|
"bin": {
|
|
"jscodeshift": "./bin/jscodeshift.js"
|
|
},
|
|
"keywords": [
|
|
"codemod",
|
|
"recast",
|
|
"babel"
|
|
],
|
|
"author": "Felix Kling",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/core": "^7.24.7",
|
|
"@babel/parser": "^7.24.7",
|
|
"@babel/plugin-transform-class-properties": "^7.24.7",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
|
|
"@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
|
|
"@babel/plugin-transform-optional-chaining": "^7.24.7",
|
|
"@babel/plugin-transform-private-methods": "^7.24.7",
|
|
"@babel/preset-flow": "^7.24.7",
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
"@babel/register": "^7.24.6",
|
|
"flow-parser": "0.*",
|
|
"graceful-fs": "^4.2.4",
|
|
"micromatch": "^4.0.7",
|
|
"neo-async": "^2.5.0",
|
|
"picocolors": "^1.0.1",
|
|
"recast": "^0.23.9",
|
|
"tmp": "^0.2.3",
|
|
"write-file-atomic": "^5.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@babel/preset-env": "^7.1.6"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@babel/preset-env": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.24.7",
|
|
"@changesets/cli": "^2.27.8",
|
|
"eslint": "8.56.0",
|
|
"jest": "^29.7.0",
|
|
"jsdoc": "^4.0.3"
|
|
},
|
|
"jest": {
|
|
"roots": [
|
|
"src",
|
|
"bin",
|
|
"parser",
|
|
"sample"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
}
|