parse-hcl 0.2.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +12 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "parse-hcl",
3
- "version": "0.2.0",
4
- "description": "Lightweight HCL parser focused on identifying and classifying blocks. Supports common Terraform blocks (resource, variable, output, locals, etc.) for tooling and automation.",
3
+ "version": "1.0.0",
4
+ "description": "CLI-first Terraform/HCL parser with JSON/YAML output, dependency graph export, and per-file metadata for IaC tooling.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -27,10 +27,18 @@
27
27
  "keywords": [
28
28
  "terraform",
29
29
  "hcl",
30
- "parser",
30
+ "terraform parser",
31
+ "iac",
32
+ "infrastructure-as-code",
31
33
  "tfvars",
32
34
  "tfstate",
33
- "plan"
35
+ "plan",
36
+ "plan.json",
37
+ "cli",
38
+ "json",
39
+ "yaml",
40
+ "dependency graph",
41
+ "static analysis"
34
42
  ],
35
43
  "sideEffects": false,
36
44
  "engines": {