-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "rsuite-codemod",
"version": "0.0.0-development",
"description": "RSuite codemod scripts",
"license": "MIT",
"repository": "rsuite/codemod",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepublish": "npm run lint && npm run test",
"jscodeshift": "jscodeshift",
"format": "prettier --write .",
"semantic-release": "semantic-release"
},
"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.13.0",
"lodash": "^4.17.21",
"meow": "^5.0.0"
},
"jest": {
"globals": {
"baseDir": "../"
},
"testEnvironment": "node",
"roots": [
"transforms",
"bin"
]
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.16.0",
"fbjs-scripts": "^0.7.1",
"jest": "^24.9.0",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4"
},
"bin": {
"rsuite-codemod": "./bin/rsuite-codemod.js"
}
}