-
Notifications
You must be signed in to change notification settings - Fork 139
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "mpesa-node",
"version": "0.1.3",
"description": "Node M-Pesa Library",
"repository": {
"type": "git",
"url": "https://github.com/safaricom/mpesa-node-library"
},
"main": "src/m-pesa.js",
"dependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"expect.js": "^0.3.1",
"express": "^4.16.3",
"got": "^8.3.0",
"jsdoc": "^3.5.5",
"mocha": "^5.0.1",
"ngrok": "^3.0.0",
"nyc": "^12.0.2",
"standard": "^11.0.0",
"supertest": "^3.0.0"
},
"scripts": {
"test": "npm run test-unit && npm run test-integration",
"test-unit": "mocha tests/unit/*.test.js",
"test-integration": "nyc --reporter=text mocha --exit tests/integrations/*.js"
},
"keywords": [
"mpesa",
"mpesa-node",
"mpesa-api"
],
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"author": "Geoffrey Mureithi",
"license": "MIT"
}