-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.2 KB
/
package.json
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
{
"name": "@momofy/sdk",
"type": "module",
"version": "1.1.0",
"description": "Momofy SDK for Node Js Applications",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js",
"types": "./dist/**/*.d.ts"
},
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "vitest",
"publish": "npm publish",
"prepublish": "yarn build"
},
"publishConfig": {
"source": "src/index.ts",
"main": "dist/index.js",
"access": "public"
},
"homepage": "https://github.com/MomofyApp/momofy-nodejs-sdk",
"repository": "https://github.com/MomofyApp/momofy-nodejs-sdk",
"author": "roqkabel <[email protected]> (https://roqkabel.com)",
"license": "MIT",
"private": false,
"devDependencies": {
"microbundle": "^0.15.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"dependencies": {
"axios": "^1.6.7"
},
"keywords": [
"momofy",
"momo",
"mobile-money",
"mtn",
"tigo",
"airtel-tigo",
"vodafone"
],
"files": [
"dist"
]
}