-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 832 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 832 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
30
31
32
33
34
35
36
{
"name": "payfast-lib",
"version": "1.3.3-alpha",
"description": "A flexible easy to use payfast express handler for Node.js applications",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:dev": "tsc --watch",
"dev:express": "nodemon dist/express-test-server"
},
"author": "Dellan Muchengapadare",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.4.5",
"@types/uuid": "^9.0.2",
"nodemon": "^3.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"install": "^0.13.0",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"types": "dist/index.d.ts",
"type": "commonjs",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
]
}