From f7649e2aeb4ca102c4dd4f9a7ed6c6c26904b941 Mon Sep 17 00:00:00 2001 From: KallumJ <57623845+KallumJ@users.noreply.github.com> Date: Sat, 6 Apr 2024 15:27:53 +0100 Subject: [PATCH] Add properties parser --- package-lock.json | 31 +++++++++++++++++++++++++++++++ package.json | 2 ++ 2 files changed, 33 insertions(+) diff --git a/package-lock.json b/package-lock.json index bcd59e8..33e570b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,7 @@ "license": "ISC", "dependencies": { "@types/inquirer": "^9.0.0", + "@types/properties-parser": "^0.3.3", "as-table": "^1.0.55", "axios": "^0.27.2", "chalk": "^5.0.1", @@ -18,6 +19,7 @@ "node-downloader-helper": "^2.1.2", "ora": "^6.1.2", "pino": "^8.3.1", + "properties-parser": "^0.6.0", "string-format": "^2.0.0", "string-similarity-js": "^2.1.4", "typescript-string-operations": "^1.4.1" @@ -44,6 +46,14 @@ "undici-types": "~5.26.4" } }, + "node_modules/@types/properties-parser": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@types/properties-parser/-/properties-parser-0.3.3.tgz", + "integrity": "sha512-VZhGpE+QQ2JNbaY4B4Y2iM/jdUsq3HO75uBKLk07VT6P2Kg1aifeYL6I3RosFniSdAb4PtuH5UaY8jXU7JeIYA==", + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/through": { "version": "0.0.30", "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", @@ -620,6 +630,14 @@ "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-2.0.0.tgz", "integrity": "sha512-+MmoAXoUX+VTHAlwns0h+kFUWFs/3FZy+ZuchkgjyOu3oioLAo2LB5aCfKPh2+P9O18i3m43tUEv3YqttSy0Ww==" }, + "node_modules/properties-parser": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/properties-parser/-/properties-parser-0.6.0.tgz", + "integrity": "sha512-qvr2cSmoA0dln0MARAKwBzPkkXn7FqwX+RVVNpMdMJc7rt9mqO2cXwluxtux9fHrLhjnPFaQkS8BM0kFrTCnSw==", + "engines": { + "node": ">= 0.3.1" + } + }, "node_modules/quick-format-unescaped": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", @@ -897,6 +915,14 @@ "undici-types": "~5.26.4" } }, + "@types/properties-parser": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@types/properties-parser/-/properties-parser-0.3.3.tgz", + "integrity": "sha512-VZhGpE+QQ2JNbaY4B4Y2iM/jdUsq3HO75uBKLk07VT6P2Kg1aifeYL6I3RosFniSdAb4PtuH5UaY8jXU7JeIYA==", + "requires": { + "@types/node": "*" + } + }, "@types/through": { "version": "0.0.30", "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", @@ -1278,6 +1304,11 @@ "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-2.0.0.tgz", "integrity": "sha512-+MmoAXoUX+VTHAlwns0h+kFUWFs/3FZy+ZuchkgjyOu3oioLAo2LB5aCfKPh2+P9O18i3m43tUEv3YqttSy0Ww==" }, + "properties-parser": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/properties-parser/-/properties-parser-0.6.0.tgz", + "integrity": "sha512-qvr2cSmoA0dln0MARAKwBzPkkXn7FqwX+RVVNpMdMJc7rt9mqO2cXwluxtux9fHrLhjnPFaQkS8BM0kFrTCnSw==" + }, "quick-format-unescaped": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", diff --git a/package.json b/package.json index efae242..eb6878b 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "license": "ISC", "dependencies": { "@types/inquirer": "^9.0.0", + "@types/properties-parser": "^0.3.3", "as-table": "^1.0.55", "axios": "^0.27.2", "chalk": "^5.0.1", @@ -22,6 +23,7 @@ "node-downloader-helper": "^2.1.2", "ora": "^6.1.2", "pino": "^8.3.1", + "properties-parser": "^0.6.0", "string-format": "^2.0.0", "string-similarity-js": "^2.1.4", "typescript-string-operations": "^1.4.1"