-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
38 lines (38 loc) · 935 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": "optional-chaining-codemod",
"description": "Codemod to migrate from Lodash get and logical and expressions to optional chaining",
"version": "1.7.0",
"bin": {
"optional-chaining-codemod": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/villesau/optional-chaining-codemod.git"
},
"keywords": [
"codemod",
"optional",
"chaining",
"optional chaining",
"flow",
"flow-type"
],
"author": "Ville Saukkonen",
"license": "MIT",
"bugs": {
"url": "https://github.com/villesau/optional-chaining-codemod/issues"
},
"homepage": "https://github.com/villesau/optional-chaining-codemod#readme",
"scripts": {
"test": "jest",
"prettier": "prettier ./**/*.js ./*.js --write"
},
"dependencies": {
"execa": "^5.1.1",
"jscodeshift": "^0.13.0"
},
"devDependencies": {
"jest": "^27.4.5",
"prettier": "^2.5.1"
}
}