-
Notifications
You must be signed in to change notification settings - Fork 481
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "jscodeshift",
"version": "0.16.1",
"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": {
"prepare": "cp -R src/ dist/",
"test": "jest --bail",
"docs": "rm -rf docs && jsdoc -d docs -R README.md src/collections/* src/core.js src/Collection.js"
},
"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",
"picocolors": "^1.0.1",
"flow-parser": "0.*",
"graceful-fs": "^4.2.4",
"micromatch": "^4.0.7",
"neo-async": "^2.5.0",
"node-dir": "^0.1.17",
"recast": "^0.23.9",
"temp": "^0.9.4",
"write-file-atomic": "^5.0.1"
},
"peerDependencies": {
"@babel/preset-env": "^7.1.6"
},
"peerDependenciesMeta": {
"@babel/preset-env": {
"optional": true
}
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "8.56.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"mkdirp": "^3.0.1"
},
"jest": {
"roots": [
"src",
"bin",
"parser",
"sample"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}