-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "mpesa-api",
"version": "3.0.2",
"description": "An NPM Module built with NodeJs to help you with M-Pesa Daraja API calls.",
"main": "lib/index",
"types": "lib/index",
"type": "commonjs",
"homepage": "https://github.com/newtonmunene99/mpesa-api/",
"scripts": {
"start": "node lib/index.js",
"dev": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index",
"prebuild": "rm -rf lib",
"build": "./node_modules/.bin/tsc --project tsconfig.build.json && npm run copy-keys",
"copy-keys": "ncp src/keys lib/keys",
"test": "jest",
"coverage": "jest --coverage"
},
"keywords": [
"mpesa",
"nodejs",
"node",
"mobile money",
"money"
],
"author": "Newton Munene <newtonmunene99@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.9",
"jest": "^26.6.3",
"jest-mock-extended": "^1.0.10",
"ncp": "^2.0.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-mockito": "^2.6.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/newtonmunene99/mpesa-api.git"
},
"bugs": {
"url": "https://github.com/newtonmunene99/mpesa-api/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}