forked from sparkplug/momoapi-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 691 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 691 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
{
"name": "momoapi-client",
"version": "0.0.1",
"description": "MTN Momo Api Client for nodejs written in Typescript",
"main": "main.ts",
"scripts": {
"start:dev": "nodemon",
"prestart:prod": "rimraf dist && tsc",
"start:prod": "node dist/main.js"
},
"keywords": [
"MTN",
"Momo",
"Typescript",
"Nodejs"
],
"author": "Kaamuli Anthony Eriya",
"license": "ISC",
"devDependencies": {
"@types/node": "^10.12.9",
"nodemon": "^1.18.6",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"axios": "^0.18.0",
"uuid": "^3.3.2"
}
}