-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.93 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "paybridge",
"version": "1.0.0-rc.2",
"description": "One API for fiat + crypto payments. Multi-provider routing, automatic failover, MoonPay on/off-ramp. SA-first, global-ready.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"paybridge": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"build:cli": "npm run build && node scripts/post-build.js",
"clean": "rm -rf dist",
"cli": "node dist/cli/index.js",
"prepack": "npm run clean && npm run build:cli",
"prepublishOnly": "npm run clean && npm run build:cli",
"test": "tsc && tsc --project tsconfig.test.json && find dist-test -name '*.test.js' -exec node --test {} +",
"test:e2e:moonpay": "tsx tests/e2e/moonpay-sandbox.ts",
"test:e2e:yellowcard": "tsx tests/e2e/yellowcard-sandbox.ts",
"test:e2e:sandbox": "tsx tests/e2e/sandbox-validate.ts"
},
"keywords": [
"payments",
"south-africa",
"payment-gateway",
"yoco",
"ozow",
"softycomp",
"payfast",
"nodejs",
"typescript",
"fintech",
"payment-integration",
"unified-api",
"zar",
"payment-sdk",
"adyen",
"mercadopago",
"razorpay",
"india",
"latam",
"mollie",
"square",
"pesapal",
"transak",
"ramp",
"east-africa",
"cli",
"command-line",
"drift-detection",
"monitoring",
"api-validation",
"postgres",
"success-rate",
"intelligent-routing"
],
"author": "Kobie Wentzel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kobie3717/paybridge.git"
},
"bugs": {
"url": "https://github.com/kobie3717/paybridge/issues"
},
"homepage": "https://github.com/kobie3717/paybridge#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^18.19.130",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}