-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 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
{
"name": "mpesa-api-nodejs",
"version": "v2.0.0",
"description": "Biblioteca em NodeJS para M-PESA (Moçambique)",
"main": "dist/index.js",
"scripts": {
"start": "node index.js",
"build": "babel src -d dist",
"clear": "rm -rf dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emagombe/mpesa-api-js.git"
},
"keywords": [
"mpesa"
],
"author": "Edson Magombe",
"license": "ISC",
"bugs": {
"url": "https://github.com/emagombe/mpesa-api-js/issues"
},
"homepage": "https://github.com/emagombe/mpesa-api-js#readme",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/register": "^7.22.15"
},
"dependencies": {
"axios": "^1.5.1"
},
"peerDependencies": {
"@babel/runtime": "^7.23.2"
}
}