-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
69 lines (69 loc) · 1.48 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
{
"name": "africastalking",
"version": "0.7.1",
"description": "Official AfricasTalking node.js API wrapper",
"main": "index.js",
"scripts": {
"test": "nyc mocha ./test --exit --recursive",
"test-windows": "nyc node_modules/mocha/bin/_mocha ./test",
"lint": "standard --fix",
"pretest": "standard"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AfricasTalkingLtd/africastalking-node.js"
},
"keywords": [
"africastalking",
"sms",
"ussd",
"voice",
"m-pesa",
"payments",
"airtime",
"mobile_data"
],
"author": "Africa's Talking",
"license": "MIT",
"bugs": {
"url": "https://github.com/AfricasTalkingLtd/africastalking-node.js/issues"
},
"homepage": "https://github.com/AfricasTalkingLtd/africastalking-node.js#readme",
"engines": {
"node": ">=18"
},
"standard": {
"ignore": [
"/example"
],
"globals": [
"it",
"describe",
"before",
"after",
"context"
]
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"google-libphonenumber": "^3.2.35",
"lodash": "^4.17.21",
"querystring": "^0.2.0",
"validate.js": "^0.13.1"
},
"devDependencies": {
"express": "^4.19.2",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"pre-commit": "^1.2.2",
"should": "^13.2.3",
"standard": "^17.1.0",
"supertest": "^7.0.0"
}
}