-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "unify-pay-flex",
"version": "1.0.15",
"description": "A universal payment gateway SDK for Node.js",
"main": "dist/SDK.js",
"types": "dist/SDK.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write .",
"lint:format": "prettier --write . && eslint .",
"lint:fix": "eslint --fix . && npm run format"
},
"author": "dharmik bhesaniya",
"license": "MIT",
"keywords": [
"payment",
"gateway",
"stripe",
"razorpay",
"typescript",
"sdk"
],
"files": [
"dist"
],
"dependencies": {
"@stripe/stripe-js": "^4.5.0",
"razorpay": "^2.9.4",
"stripe": "^16.12.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^4.5.2"
},
"bugs": {
"url": "https://github.com/dharmikbhesaniya/unify-pay-flex/issues"
},
"homepage": "https://github.com/dharmikbhesaniya/unify-pay-flex#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dharmikbhesaniya/unify-pay-flex.git"
}
}