Add properties parser

This commit is contained in:
KallumJ 2024-04-06 15:27:53 +01:00
parent 2d1513366c
commit f7649e2aeb
No known key found for this signature in database
GPG Key ID: D7F4589C4D7F81A9
2 changed files with 33 additions and 0 deletions

31
package-lock.json generated
View File

@ -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",

View File

@ -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"