-
Notifications
You must be signed in to change notification settings - Fork 289
/
package.json
58 lines (58 loc) · 1.31 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
{
"name": "react-codemod",
"version": "5.4.4",
"description": "React codemod scripts",
"license": "BSD-3-Clause",
"repository": "reactjs/react-codemod",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepublish": "npm run lint && npm run test",
"jscodeshift": "jscodeshift"
},
"dependencies": {
"chalk": "^2.4.2",
"eslint": "^6.6.0",
"execa": "^3.2.0",
"globby": "^10.0.1",
"inquirer": "^7.0.0",
"is-git-clean": "^1.1.0",
"jscodeshift": "^0.11.0",
"meow": "^5.0.0"
},
"jest": {
"globals": {
"baseDir": "../"
},
"testEnvironment": "node",
"roots": [
"transforms",
"bin"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
}
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@types/jest": "^24.9.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.16.0",
"fbjs-scripts": "^0.7.1",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"typescript": "4.8.4"
},
"resolutions": {
"colors": "1.3.3"
},
"bin": {
"react-codemod": "./bin/react-codemod.js"
}
}