-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
81 lines (81 loc) · 1.9 KB
/
package.json
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
{
"name": "mtn-momo",
"version": "0.1.1",
"description": "MTN Mobile Money API Client for NodeJS written in TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rm -r lib",
"compile": "tsc -p tsconfig.json",
"lint": "tslint --project tsconfig.json --config tslint.json \"{src,test}/**/*.ts\"",
"test": "NODE_ENV=test nyc mocha",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"examples"
],
"reporter": [
"lcov"
],
"all": true
},
"keywords": [
"MTN",
"Mobile",
"Money",
"Momo",
"TypeScript",
"NodeJS"
],
"bin": {
"momo-sandbox": "./lib/cli.js"
},
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"commander": "^2.19.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^6.1.3",
"@semantic-release/git": "^4.0.2",
"@types/bluebird": "^3.5.24",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/sinon": "^7.0.4",
"@types/uuid": "^8.3.0",
"axios-mock-adapter": "^1.16.0",
"bluebird": "^3.5.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"semantic-release": "^19.0.3",
"sinon": "^7.2.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparkplug/momoapi-node.git"
},
"bugs": {
"url": "https://github.com/sparkplug/momoapi-node/issues"
},
"homepage": "https://github.com/sparkplug/momoapi-node#readme"
}