balanceofsatoshis 11.22.3 → 11.22.4

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 (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/bos +1 -1
  3. package/package.json +11 -4
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## 11.22.3
3
+ ## 11.22.4
4
4
 
5
5
  - `telegram`: Fix issue when moving a created invoice to a saved node
6
6
 
package/bos CHANGED
@@ -17,7 +17,7 @@ const inquirer = importLazy('inquirer');
17
17
  const lnService = importLazy('ln-service');
18
18
  const lnSync = importLazy('ln-sync');
19
19
  const paidServices = importLazy('paid-services');
20
- const prog = require('caporal');
20
+ const prog = require('@alexbosworth/caporal');
21
21
 
22
22
  const commandConstants = require('./commands/constants');
23
23
 
package/package.json CHANGED
@@ -10,6 +10,7 @@
10
10
  "url": "https://github.com/alexbosworth/balanceofsatoshis/issues"
11
11
  },
12
12
  "dependencies": {
13
+ "@alexbosworth/caporal": "1.4.0",
13
14
  "@alexbosworth/fiat": "1.0.0",
14
15
  "@alexbosworth/html2unicode": "1.1.5",
15
16
  "@alexbosworth/node-fetch": "2.6.2",
@@ -22,7 +23,6 @@
22
23
  "bolt01": "1.2.3",
23
24
  "bolt03": "1.2.12",
24
25
  "bolt07": "1.8.0",
25
- "caporal": "1.4.0",
26
26
  "cbor": "8.1.0",
27
27
  "colorette": "2.0.16",
28
28
  "crypto-js": "4.1.1",
@@ -69,8 +69,15 @@
69
69
  "license": "MIT",
70
70
  "main": "index.js",
71
71
  "name": "balanceofsatoshis",
72
- "resolutions": {
73
- "colors": "1.1.2"
72
+ "overrides": {
73
+ "caporal@1.4.0": {
74
+ "cli-table3@0.5.1": {
75
+ "colors@1.4.2": "1.4.0"
76
+ },
77
+ "prettyjson@1.2.1": {
78
+ "colors@1.4.2": "1.4.0"
79
+ }
80
+ }
74
81
  },
75
82
  "repository": {
76
83
  "type": "git",
@@ -83,5 +90,5 @@
83
90
  "postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis --push .",
84
91
  "test": "tap --branches=1 --functions=1 --lines=1 --statements=1 -t 60 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/wallets/*.js"
85
92
  },
86
- "version": "11.22.3"
93
+ "version": "11.22.4"
87
94
  }