forked from villesau/optional-chaining-codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1006 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1006 Bytes
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
{
"name": "optional-chaining-codemod",
"description": "Codemod to migrate from Lodash get and logical and expressions to optional chaining",
"version": "0.1.5",
"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"
},
"dependencies": {
"execa": "^1.0.0",
"jscodeshift": "^0.5.1"
},
"devDependencies": {
"jest": "^23.6.0",
"prettier": "^1.14.2"
},
"resolutions": {
"recast": "git+https://github.com/villesau/recast.git#e1ded4c1b3ec2f6f1190e591dd0b9a3ba4eeb307"
}
}