-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
{
"name": "flutterwave-node-v3",
"version": "1.1.14",
"description": "The official Node.JS library for Flutterwave v3 payment APIs",
"main": "index.js",
"scripts": {
"test": "mocha **/*.test.js",
"test-watch": "nodemon --exec \"npm test\"",
"coverage": "nyc npm run test",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"nyc": {
"coverage": "test",
"check-coverage": true,
"functions": 5,
"lines": 5,
"report-dir": "./coverage",
"reporter": [
"lcov"
]
},
"keywords": [],
"author": "Flutterwave Developers",
"license": "MIT",
"dependencies": {
"axios": "^0.21.4",
"bluebird": "^3.7.2",
"chai-as-promised-also-chain": "^1.0.2",
"eslint-config-prettier": "^8.6.0",
"joi": "^17.8.3",
"md5": "^2.3.0",
"node-forge": "1.3.0",
"q": "^1.5.1",
"request": "~2.88.2",
"sha.js": "^2.4.11",
"winston": "^3.8.2"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.3",
"dotenv": "^10.0.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "2.8.3",
"should": "^13.2.3",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flutterwave/Flutterwave-node-v3.git"
},
"bugs": {
"url": "https://github.com/Flutterwave/Flutterwave-node-v3/issues"
},
"homepage": "https://github.com/Flutterwave/Flutterwave-node-v3#readme"
}