forked from reactjs/react-codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 793 Bytes
/
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
{
"name": "react-codemod",
"version": "4.0.0",
"description": "React codemod scripts",
"license": "BSD-3-Clause",
"repository": "reactjs/react-codemod",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepublish": "npm run lint && npm run test"
},
"dependencies": {
"babel-eslint": "^6.0.5",
"babel-jest": "^15.0.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.13.1",
"fbjs-scripts": "^0.7.1",
"jest": "^17.0.3",
"jscodeshift": "^0.3.30",
"path": "^0.12.7"
},
"jest": {
"globals": {
"baseDir": "../"
},
"testEnvironment": "node",
"testPathDirs": [
"transforms"
]
},
"devDependencies": {
"eslint-plugin-react": "^5.2.2"
}
}