eliminate minimist dependency

This commit is contained in:
Alex Bosworth 2026-08-06 12:46:52 -07:00
parent c79d8f18e2
commit 27db680647
No known key found for this signature in database
GPG key ID: E80D2F3F311FD87E
3 changed files with 13 additions and 24 deletions

View file

@ -1,5 +1,9 @@
# Versions
## 23.1.4
- Dependency cleanup: remove minimist dependency
## 23.1.3
- Dependency cleanup: remove crypto js dependency

30
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "balanceofsatoshis",
"version": "23.1.3",
"version": "23.1.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "balanceofsatoshis",
"version": "23.1.3",
"version": "23.1.4",
"license": "MIT",
"dependencies": {
"@alexbosworth/blockchain": "4.0.0",
@ -37,7 +37,6 @@
"ln-service": "59.2.3",
"ln-sync": "8.0.3",
"ln-telegram": "8.0.5",
"minimist": "1.2.8",
"moment": "2.30.1",
"paid-services": "8.0.5",
"probing": "7.0.0",
@ -169,11 +168,6 @@
"node": ">=0.1.90"
}
},
"node_modules/@alexbosworth/prettyjson/node_modules/minimist": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
"integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
},
"node_modules/@alexbosworth/saxophone": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/@alexbosworth/saxophone/-/saxophone-0.6.2.tgz",
@ -2917,12 +2911,9 @@
}
},
"node_modules/minimist": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
"integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
},
"node_modules/mkdirp-classic": {
"version": "0.5.3",
@ -4179,11 +4170,6 @@
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz",
"integrity": "sha512-ENwblkFQpqqia6b++zLD/KUWafYlVY/UNnAp7oz7LY7E924wmpye416wBOmvv/HMWzl8gL1kJlfvId/1Dg176w=="
},
"minimist": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
"integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
}
}
},
@ -6229,9 +6215,9 @@
}
},
"minimist": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
"integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
},
"mkdirp-classic": {
"version": "0.5.3",

View file

@ -38,7 +38,6 @@
"ln-service": "59.2.3",
"ln-sync": "8.0.3",
"ln-telegram": "8.0.5",
"minimist": "1.2.8",
"moment": "2.30.1",
"paid-services": "8.0.5",
"probing": "7.0.0",
@ -79,5 +78,5 @@
"postpublish": "docker buildx build --platform linux/amd64,linux/arm64 -t alexbosworth/balanceofsatoshis -t alexbosworth/balanceofsatoshis:$npm_package_version --push .",
"test": "node --experimental-test-coverage --test test/arrays/*.js test/balances/*.js test/chain/*.js test/display/*.js test/encryption/*.js test/lnd/*.js test/network/*.js test/nodes/*.js test/peers/*.js test/responses/*.js test/routing/*.js test/services/*.js test/swaps/*.js test/tags/*.js test/telegram/*.js test/wallets/*.js"
},
"version": "23.1.3"
"version": "23.1.4"
}