burok-sdk 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# BUROK SDK
|
|
2
|
+
|
|
3
|
+
SDK officiel pour l'API BUROK - Solution complète de paiement et de gestion financière pour l'Afrique de l'Ouest.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/burok-sdk)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "burok-sdk",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "SDK officiel pour l'API BUROK - Solution de paiement pour l'Afrique de l'Ouest",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"!dist/",
|
|
9
|
+
"!*"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc",
|
|
13
|
+
"test": "jest --passWithNoTests",
|
|
14
|
+
"prepare": "npm run build",
|
|
15
|
+
"prepublishOnly": "npm run build",
|
|
16
|
+
"lint": "eslint src --ext .ts",
|
|
17
|
+
"docs": "typedoc --out docs src"
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"private": false,
|
|
23
|
+
"keywords": [
|
|
24
|
+
"burok"
|
|
25
|
+
],
|
|
26
|
+
"author": "BUROK",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"axios": "^1.9.0",
|
|
30
|
+
"qrcode": "^1.5.3",
|
|
31
|
+
"jwt-decode": "^3.1.2"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@types/jest": "^29.5.12",
|
|
35
|
+
"@types/node": "^20.11.19",
|
|
36
|
+
"@types/qrcode": "^1.5.5",
|
|
37
|
+
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
38
|
+
"@typescript-eslint/parser": "^7.0.2",
|
|
39
|
+
"eslint": "^8.56.0",
|
|
40
|
+
"jest": "^29.7.0",
|
|
41
|
+
"ts-jest": "^29.1.2",
|
|
42
|
+
"typedoc": "^0.25.8",
|
|
43
|
+
"typescript": "^5.3.3"
|
|
44
|
+
}
|
|
45
|
+
}
|