-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "ercaspay-sdk",
"version": "1.1.3",
"description": "Seamlessly integrate Ecarspay's robust payment solutions with the battle-tested JavaScript SDK—featuring typed responses, JSDoc support, and in-editor documentation for a developer-friendly experience.",
"main": "./dist/index.js",
"devDependencies": {
"@types/bun": "latest",
"eslint": "^6.4.0",
"standard-version": "^9.5.0",
"rimraf": "^5.0.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"keywords": [
"ercaspay",
"ercaspay-sdk",
"payment",
"payment-gateway",
"payment-solution",
"payment-integration"
],
"files": [
"dist/**/*"
],
"license": "MIT",
"dependencies": {
"axios": "^1.7.9",
"joi": "^17.13.3"
},
"scripts": {
"lint": "eslint .",
"check-lint": "eslint [0-9]*.ts",
"clean": "rimraf ./dist",
"build": "tsc",
"dev": "ts-node index.ts",
"test": "bun test --timeout 20000 --watch --verbose",
"full-test": "eslint */[0-9]*.ts && jest --watchAll --verbose",
"full-test-fix": "eslint */[0-9]*.ts --fix && jest --watchAll --verbose",
"pub": "bun run clean && bun run build && standard-version && git push && npm publish"
},
"authors": [
"Adedoyin Emmanuel Adeniyi",
"Fasakin Henry",
"Dina Iyanuoluwa"
],
"bugs": {
"url": "https://github.com/Adedoyin-Emmanuel/ercaspay-js-sdk/issues"
},
"homepage": "https://github.com/Adedoyin-Emmanuel/ercaspay-js-sdk#readme"
}