-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 965 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 965 Bytes
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
{
"name": "@lepresk/momo-api",
"version": "1.1.0",
"description": "MTN Mobile Money and Airtel Money API client for Node.js — collections, disbursements and remittances",
"author": "lepresk <lepresk@gmail.com>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"dev": "tsx src/index.ts"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mtn",
"momo",
"mobile-money",
"mobile-payment",
"africa",
"fintech",
"api-client",
"payment-gateway",
"collection",
"disbursement",
"mtn-momo",
"remittance",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/lepresk/momo-api-node.git"
},
"devDependencies": {
"@types/node": "^25.3.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}