gitextract_m0mzu67e/ ├── .babelrc ├── .github/ │ └── workflows/ │ └── code-scanning-2022-06-29.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.d.ts ├── package.json ├── src/ │ ├── cli.ts │ ├── index.ts │ └── util/ │ └── endsWith.ts ├── test/ │ └── unit/ │ ├── data/ │ │ ├── 00-terraform-plan.expected.json │ │ ├── 00-terraform-plan.stdout.txt │ │ ├── 01-terraform-plan.expected.json │ │ ├── 01-terraform-plan.stdout.txt │ │ ├── 02-terraform-plan.expected.json │ │ ├── 02-terraform-plan.stdout.txt │ │ ├── 03-terraform-plan.expected.json │ │ ├── 03-terraform-plan.stdout.txt │ │ ├── 04-no-magic-start.expected.json │ │ ├── 04-no-magic-start.stdout.txt │ │ ├── 05-no-magic-end.expected.json │ │ ├── 05-no-magic-end.stdout.txt │ │ ├── 06-attribute-value-unexpected-delimiter.expected.json │ │ ├── 06-attribute-value-unexpected-delimiter.stdout.txt │ │ ├── 07-invalid-action-line.expected.json │ │ ├── 07-invalid-action-line.stdout.txt │ │ ├── 08-no-attribute-name.expected.json │ │ ├── 08-no-attribute-name.stdout.txt │ │ ├── 09-terraform-plan-windows-line-end.expected.json │ │ ├── 09-terraform-plan-windows-line-end.stdout.txt │ │ ├── 10-issue-4.expected.json │ │ ├── 10-issue-4.stdout.txt │ │ ├── 11-tainted-resource.expected.json │ │ ├── 11-tainted-resource.stdout.txt │ │ ├── 12-modules.expected.json │ │ ├── 12-modules.stdout.txt │ │ ├── 13-no-changes.expected.json │ │ ├── 13-no-changes.stdout.txt │ │ ├── 14-ignore-unchanged-attributes.expected.json │ │ └── 14-ignore-unchanged-attributes.stdout.txt │ └── terraform-plan-parser.test.ts ├── tools/ │ ├── bin/ │ │ ├── postbuild │ │ └── publish │ └── build-util.js ├── tsconfig-src-cjs.json ├── tsconfig-src-es6.json ├── tsconfig-src-esnext.json ├── tsconfig-test.json ├── tsconfig.json └── tslint.json