-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "intouch-api-wrapper",
"version": "1.0.3",
"private": false,
"description": "The Intouch Payment Library is a NodeJS library that provides a simple interface for making payments with mobile money service providers that are supported by the Intouch platform. This library handles the complexities of interacting with the Intouch API, allowing you to focus on building your application.",
"author": {
"name": "Alex Nguetcha",
"email": "nguetchaalex@gmail.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexnguetcha/intouch-nodejs.git"
},
"bugs": {
"url": "https://github.com/alexnguetcha/intouch-nodejs/issues"
},
"homepage": "https://github.com/alexnguetcha/intouch-nodejs#readme",
"publishConfig": {},
"jest": {
"collectCoverage": true
},
"scripts": {
"test": "jest",
"build": "tsc"
},
"license": "MIT",
"dependencies": {
"axios": "^1.3.4",
"digest-fetch": "^2.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.5.0",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"typescript": "^5.0.2"
},
"keywords": [
"nodejs",
"payment-integration",
"intouch",
"mobilemoney",
"gutouch"
]
}