forked from mikeyny/pesepay-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 917 Bytes
/
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
{
"name": "pesepay-js",
"version": "1.0.7",
"description": "A Node.js client library for integrating with the Pesepay API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc -p tsconfig.json",
"prepublish": "tsc",
"test": "jest"
},
"keywords": [
"pesepay",
"pesepay-js",
"payment",
"payment-gateway"
],
"author": "Michael Nyamande [email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/mikeyny/pesepay-js.git"
},
"homepage": "https://github.com/mikeyny/pesepay-js#readme",
"license": "ISC",
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"crypto-js": "^4.1.1"
}
}