-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 792 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 792 Bytes
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
{
"name": "zarinpal-node-sdk",
"version": "2.2.0",
"description": "A Node.js SDK for ZarinPal payment services",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npx tsc --declaration ./src/index.ts --outDir ./dist",
"test": "jest",
"prepublish": "npm run build"
},
"dependencies": {
"axios": "^1.7.7",
"tslib": "^2.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.7.4",
"axios-mock-adapter": "^2.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}