-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
41 lines (41 loc) · 916 Bytes
/
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
{
"name": "pesajs",
"version": "0.0.1",
"description": "M-Pesa API helper",
"homepage": "https://github.com/aksalj/pesajs",
"repository": {
"type": "git",
"url": "https://github.com/aksalj/pesajs"
},
"bugs": {
"url": "https://github.com/aksalj/pesajs/issues",
"email": "aksalj@aksalj.com"
},
"keywords": [
"mpesa",
"mobile money",
"safaricom"
],
"author": "Salama AB <aksalj@aksalj.com>",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=4.4"
},
"dependencies": {
"crypto-js": "^3.1.6",
"request": "^2.72.0",
"xml2json": "^0.9.1"
},
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"example": "cd example && npm start"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"request-debug": "^0.2.0"
}
}