-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 874 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 874 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
{
"name": "mpesa-express",
"version": "1.0.6",
"description": "this is a npm package for integrating mpesa savices with node js",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc src/index.ts",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"mpesa",
"integration"
],
"author": "Dev Thagichu",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@types/node": "^18.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"@types/jest": "^29.5.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devthagichu/mpesa-express.git"
},
"bugs": {
"url": "https://github.com/devthagichu/mpesa-express/issues"
},
"homepage": "https://github.com/devthagichu/mpesa-express#readme"
}