-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 KB
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
{
"name": "@montarist/nestpay-api",
"version": "1.0.1",
"description": "An unofficial NestPay (EST) payment gateway integration for Node.js and NestJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/montarist/nestpay-api.git"
},
"keywords": [
"nestpay",
"payment",
"gateway",
"est",
"isbank",
"turkey",
"payment-processing",
"nestjs",
"nodejs"
],
"author": "Montarist Bilisim",
"license": "MIT",
"bugs": {
"url": "https://github.com/montarist/nestpay-api/issues"
},
"homepage": "https://github.com/montarist/nestpay-api#readme",
"dependencies": {
"axios": "^1.7.9",
"uuid": "^11.0.4",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.12",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
}
}