-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 928 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
36
37
38
{
"name": "create-codemod-app",
"version": "0.0.5",
"description": "Create Codemod",
"license": "MIT",
"repository": "dangreenisrael/create-codemod-app",
"scripts": {
"test": "jest",
"prepublish": "npm run test",
"jscodeshift": "jscodeshift",
"prettify": "prettier --write {bin,transforms}/{*,**/*}"
},
"dependencies": {
"chalk": "^2.4.2",
"execa": "^2.0.4",
"globby": "^10.0.1",
"inquirer": "^7.0.0",
"is-git-clean": "^1.1.0",
"jscodeshift": "^0.6.4",
"meow": "^5.0.0",
"node-plop": "^0.19.0"
},
"jest": {
"globals": {
"baseDir": "../"
},
"testEnvironment": "node"
},
"devDependencies": {
"jest": "^24.9.0",
"prettier": "^1.18.2"
},
"bin": {
"create-codemod-app:generate": "./bin/codemod-generator.js",
"create-codemod-app": "./bin/create-codemod-app.js"
},
"main": "src/facebook-codemod-runner/codemod-runner"
}