@smartsoft001/payments-stack 2.142.0

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 (2) hide show
  1. package/README.md +20 -0
  2. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @smartsoft001/payments-stack
2
+
3
+ One install for payment transactions: the `trans` family and the PayPal, PayU, Paynow and Revolut integrations.
4
+
5
+ ```bash
6
+ npm install @smartsoft001/payments-stack
7
+ ```
8
+
9
+ This package ships no code of its own. It pins one version of each package below, so a project
10
+ installs the whole set at a single version instead of resolving them one by one:
11
+
12
+ - [`@smartsoft001/trans-domain`](https://www.npmjs.com/package/@smartsoft001/trans-domain)
13
+ - [`@smartsoft001/trans-shell-app-services`](https://www.npmjs.com/package/@smartsoft001/trans-shell-app-services)
14
+ - [`@smartsoft001/trans-shell-nestjs`](https://www.npmjs.com/package/@smartsoft001/trans-shell-nestjs)
15
+ - [`@smartsoft001/paypal`](https://www.npmjs.com/package/@smartsoft001/paypal)
16
+ - [`@smartsoft001/payu`](https://www.npmjs.com/package/@smartsoft001/payu)
17
+ - [`@smartsoft001/paynow`](https://www.npmjs.com/package/@smartsoft001/paynow)
18
+ - [`@smartsoft001/revolut`](https://www.npmjs.com/package/@smartsoft001/revolut)
19
+
20
+ The full documentation is at https://emiljuchnikowski.github.io/smartsoft001/docs/installation/.
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@smartsoft001/payments-stack",
3
+ "version": "2.142.0",
4
+ "description": "The payment transaction family and the four provider integrations, installed only by services that take payments.",
5
+ "license": "MIT",
6
+ "dependencies": {
7
+ "@smartsoft001/trans-domain": "2.142.0",
8
+ "@smartsoft001/trans-shell-app-services": "2.142.0",
9
+ "@smartsoft001/trans-shell-nestjs": "2.142.0",
10
+ "@smartsoft001/paypal": "2.142.0",
11
+ "@smartsoft001/payu": "2.142.0",
12
+ "@smartsoft001/paynow": "2.142.0",
13
+ "@smartsoft001/revolut": "2.142.0"
14
+ }
15
+ }