paybox-emulator 0.1.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.
- package/LICENSE +21 -0
- package/README.md +47 -0
- package/bin/paybox.js +36 -0
- package/dist/paybox.js +26417 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "paybox-emulator",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Local payment infrastructure emulator. Point a Paystack, Stripe, Flutterwave, Kora, WeWire or Wise integration at localhost and test pending payments, webhook retries, duplicate deliveries, timeouts, refunds and idempotency — deterministically, with no provider sandbox.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"paybox": "./bin/paybox.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=22.5.0"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/dsasante1/paybox.git",
|
|
22
|
+
"directory": "apps/paybox"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/dsasante1/paybox#readme",
|
|
25
|
+
"bugs": "https://github.com/dsasante1/paybox/issues",
|
|
26
|
+
"keywords": [
|
|
27
|
+
"payments",
|
|
28
|
+
"emulator",
|
|
29
|
+
"mock",
|
|
30
|
+
"sandbox",
|
|
31
|
+
"webhooks",
|
|
32
|
+
"paystack",
|
|
33
|
+
"stripe",
|
|
34
|
+
"flutterwave",
|
|
35
|
+
"kora",
|
|
36
|
+
"wewire",
|
|
37
|
+
"wise",
|
|
38
|
+
"mobile-money",
|
|
39
|
+
"testing"
|
|
40
|
+
],
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@fastify/cors": "^11.3.0",
|
|
46
|
+
"cli-table3": "^0.6.5",
|
|
47
|
+
"commander": "^15.0.0",
|
|
48
|
+
"fastify": "^5.12.1",
|
|
49
|
+
"fastify-plugin": "^5.1.0",
|
|
50
|
+
"kysely": "^0.29.5",
|
|
51
|
+
"picocolors": "^1.1.1",
|
|
52
|
+
"undici": "^8.10.0",
|
|
53
|
+
"yaml": "^2.8.0",
|
|
54
|
+
"zod": "^4.4.3"
|
|
55
|
+
}
|
|
56
|
+
}
|