mirror of
https://git.bits.team/Bits/mod-manager.git
synced 2024-11-22 22:18:22 -05:00
Add properties parser
This commit is contained in:
parent
2d1513366c
commit
f7649e2aeb
31
package-lock.json
generated
31
package-lock.json
generated
@ -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",
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user