-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 KB
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
{
"name": "simple_mpesa_api_implementation_with_node",
"version": "1.0.0",
"main": "src",
"repository": "https://github.com/tesh254/simple_mpesa_api_implementation_with_node.git",
"author": "tesh254 <ewachira254@gmail.com>",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.17.1",
"mpesa-api": "^2.1.2"
},
"scripts": {
"test": "./node_modules/.bin/mocha --require @babel/register",
"start": "node .",
"dev": "nodemon -i \"*.test.js\" .",
"lint": "eslint src/**",
"lint-fix": "eslint . --fix",
"coverage": "jest"
}
}