-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "@payos/node",
"version": "2.0.5",
"description": "payOS Node SDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage",
"typecheck": "tsc --noEmit",
"prebuild": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts && npm run format",
"build": "tsc",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"precommit": "npm run lint && npm run format:check",
"prepare": "npm run build"
},
"keywords": [
"payos",
"casso",
"vietqr",
"vietqrpro",
"vietnam qrpay"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.11",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.1.3",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/payOSHQ/payos-lib-node.git"
}
}