-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 862 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 862 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
{
"name": "node-payments-lib3.0",
"version": "1.2.5",
"description": "Payments lib",
"private": false,
"files": [
"./**"
],
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "tsc",
"clean": "del dist",
"prebuildpackage": "npm run clean && npm run build && node dist/SetupPackage.js",
"buildpackage": "cd dist && npm pack",
"publish": "cd dist && npm publish",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^22.5.0",
"typescript": "^5.5.4"
},
"dependencies": {
"axios": "^1.2.1",
"body-parser": "^1.20.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"express": "^4.19.2"
}
}