-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.13 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.13 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
81
82
83
84
85
86
{
"name": "adams-mpesa-sdk",
"version": "1.1.0",
"description": "A modern, production-grade MPesa API Wrapper/SDK for Node.js with TypeScript support",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"bin"
],
"bin": {
"mpesa-cli": "./bin/cli.js"
},
"scripts": {
"build": "tsc && node build.js && npm run build:cli",
"build:cli": "node build-cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:live": "ts-node test-live.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"mpesa",
"safaricom",
"daraja",
"stk-push",
"lipa-na-mpesa",
"c2b",
"b2c",
"payment",
"kenya",
"typescript",
"sdk"
],
"author": {
"name": "Adams Mugwe",
"email": "mugweadams439@gmail.com",
"url": "https://github.com/ADAMSmugwe"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.5",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.5",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dotenv": "^16.6.1",
"zod": "^3.22.4"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ADAMSmugwe/mpesa-API-wrapper-for-node.js.git"
},
"bugs": {
"url": "https://github.com/ADAMSmugwe/mpesa-API-wrapper-for-node.js/issues"
},
"homepage": "https://github.com/ADAMSmugwe/mpesa-API-wrapper-for-node.js#readme"
}