@bitblit/ratchet-aws-node-only 6.1.186-alpha → 6.1.196-alpha
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.
- package/package.json +30 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitblit/ratchet-aws-node-only",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.196-alpha",
|
|
4
4
|
"description": "Common tools for use with AWS (Node only)",
|
|
5
5
|
"note-on-side-effects": "Technically the entries in 'bin' below might be side effects, but they are called explicitly",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -57,18 +57,25 @@
|
|
|
57
57
|
},
|
|
58
58
|
"license": "Apache-2.0",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@bitblit/ratchet-aws": "6.1.
|
|
61
|
-
"@bitblit/ratchet-
|
|
60
|
+
"@bitblit/ratchet-aws": "6.1.196-alpha",
|
|
61
|
+
"@bitblit/ratchet-node-only": "6.1.196-alpha",
|
|
62
|
+
"@bitblit/ratchet-common": "6.1.196-alpha"
|
|
62
63
|
},
|
|
63
64
|
"optionalDependencies": {
|
|
64
65
|
"@aws-sdk/client-athena": "3.996.0",
|
|
65
66
|
"@aws-sdk/client-sts": "3.996.0",
|
|
67
|
+
"@aws-sdk/client-s3": "3.996.0",
|
|
68
|
+
"@aws-sdk/client-ec2": "3.996.0",
|
|
69
|
+
"@aws-sdk/client-ec2-instance-connect": "3.996.0",
|
|
70
|
+
"@aws-sdk/lib-dynamodb": "3.996.0",
|
|
71
|
+
"@aws-sdk/lib-storage": "3.996.0",
|
|
66
72
|
"@aws-sdk/types": "3.973.1",
|
|
67
73
|
"@smithy/abort-controller": "4.2.9",
|
|
68
74
|
"@smithy/smithy-client": "4.11.7",
|
|
69
75
|
"@smithy/util-waiter": "4.2.9",
|
|
70
|
-
"mailparser": "3.9.
|
|
76
|
+
"mailparser": "3.9.6",
|
|
71
77
|
"mime-types": "3.0.2",
|
|
78
|
+
"rxjs": "7.8.2",
|
|
72
79
|
"tmp": "0.2.5",
|
|
73
80
|
"unzipper": "0.12.3",
|
|
74
81
|
"walk": "2.3.15"
|
|
@@ -76,15 +83,22 @@
|
|
|
76
83
|
"peerDependencies": {
|
|
77
84
|
"@aws-sdk/client-athena": "^3.996.0",
|
|
78
85
|
"@aws-sdk/client-sts": "^3.996.0",
|
|
86
|
+
"@aws-sdk/client-s3": "^3.996.0",
|
|
87
|
+
"@aws-sdk/client-ec2": "^3.996.0",
|
|
88
|
+
"@aws-sdk/lib-dynamodb": "^3.996.0",
|
|
89
|
+
"@aws-sdk/lib-storage": "^3.996.0",
|
|
90
|
+
"@aws-sdk/client-ec2-instance-connect": "^3.996.0",
|
|
79
91
|
"@aws-sdk/types": "^3.973.1",
|
|
80
|
-
"@bitblit/ratchet-aws": "6.1.
|
|
81
|
-
"@bitblit/ratchet-
|
|
92
|
+
"@bitblit/ratchet-aws": "6.1.196-alpha",
|
|
93
|
+
"@bitblit/ratchet-node-only": "6.1.196-alpha",
|
|
94
|
+
"@bitblit/ratchet-common": "6.1.196-alpha",
|
|
82
95
|
"@smithy/abort-controller": "^4.2.9",
|
|
83
96
|
"@smithy/smithy-client": "^4.11.7",
|
|
84
97
|
"@smithy/util-waiter": "^4.2.9",
|
|
85
98
|
"mailparser": "^3.9.3",
|
|
86
99
|
"mime-types": "^3.0.2",
|
|
87
100
|
"tmp": "^0.2.5",
|
|
101
|
+
"rxjs": "^7.8.2",
|
|
88
102
|
"unzipper": "^0.12.3",
|
|
89
103
|
"walk": "^2.3.15"
|
|
90
104
|
},
|
|
@@ -128,5 +142,15 @@
|
|
|
128
142
|
"walk": {
|
|
129
143
|
"optional": true
|
|
130
144
|
}
|
|
145
|
+
},
|
|
146
|
+
"devDependencies": {
|
|
147
|
+
"aws-sdk-client-mock": "4.1.0"
|
|
148
|
+
},
|
|
149
|
+
"scripts": {
|
|
150
|
+
"build": "tsc",
|
|
151
|
+
"test": "vitest run",
|
|
152
|
+
"test-coverage": "vitest run --coverage",
|
|
153
|
+
"custom-publish": "pnpm publish --access public --provenance --tag $GITHUB_REF_NAME --no-git-checks",
|
|
154
|
+
"clean": "shx rm -Rf lib"
|
|
131
155
|
}
|
|
132
156
|
}
|