gitextract_nfwm18v1/ ├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__/ │ ├── __snapshots__/ │ │ └── proptypes-to-flow-test.js.snap │ └── proptypes-to-flow-test.js ├── package.json └── src/ ├── helpers/ │ ├── ReactUtils.js │ ├── annotateConstructor.js │ ├── createTypeAlias.js │ ├── findIndex.js │ ├── findParentBody.js │ ├── propTypeToFlowType.js │ ├── removePropTypeImport.js │ └── transformProperties.js ├── index.js └── transformers/ ├── es6Classes.js └── functional.js