-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.11 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.11 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
{
"name": "satim-node-sdk",
"version": "1.1.1",
"description": "Node.js SDK for the SATIM (Algeria) payment gateway",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"satim",
"payment",
"gateway",
"algeria",
"dzd"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/khalilbnd/satim-node.git"
},
"bugs": {
"url": "https://github.com/khalilbnd/satim-node/issues"
},
"homepage": "https://github.com/khalilbnd/satim-node#readme",
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^17.4.2",
"qs": "^6.11.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/qs": "^6.15.0",
"express": "^5.2.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
]
}
}