-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
50 lines (50 loc) · 1.66 KB
/
package.json
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
{
"name": "vnpay",
"repository": {
"type": "git",
"url": "git+https://github.com/lehuygiang28/vnpay.git"
},
"homepage": "https://vnpay.js.org",
"version": "1.6.1",
"description": "An open-source nodejs library support to payment with VNPay",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["lib"],
"scripts": {
"build": "rimraf ./lib && tsc",
"prepare": "npm run build",
"postinstall": "npm run format:fix",
"postuninstall": "npm run format:fix",
"test": "jest",
"test:cov": "jest --coverage",
"example": "ts-node ./example/index.ts",
"example:server": "ts-node ./example/express.ts",
"lint": "npx @biomejs/biome lint .",
"lint:fix": "npx @biomejs/biome lint . --write",
"format": "npx @biomejs/biome format .",
"format:fix": "npx @biomejs/biome format --write .",
"release": "release-it"
},
"keywords": ["vnpay", "vnpayjs", "vnpay.vn", "payment", "vn-payment", "vn-payments"],
"author": "lehuygiang28 <lehuygiang28@gmail.com>",
"maintainers": ["lehuygiang28"],
"license": "MIT",
"dependencies": {
"moment-timezone": "^0.5.43"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tsconfig/recommended": "^1.0.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.4",
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"release-it": "^17.6.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}