-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
59 lines (59 loc) · 1.34 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
51
52
53
54
55
56
57
58
59
{
"name": "vietnam-qr-pay",
"version": "1.4.0",
"description": "Encode/Decode VietQR and VNPAY-QR",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"lint": "eslint --ext .ts .",
"release": "yarn build && yarn publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xuannghia/vietnam-qr-pay.git"
},
"keywords": [
"vietqr",
"vnpayqr",
"napas",
"napas247",
"qr-pay"
],
"author": "xuannghia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xuannghia/vietnam-qr-pay/issues"
},
"homepage": "https://github.com/xuannghia/vietnam-qr-pay#readme",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"jest": "^28.1.1",
"qrto": "^0.0.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"peerDependencies": {},
"dependencies": {},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "./",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node"
}
}