-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
42 lines (42 loc) · 1.02 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
{
"dependencies": {
"crc": "^3.4.4",
"minimist": "^1.2.0",
"qrcode": "^0.9.0"
},
"files": [
"index.js",
"index.d.ts",
"promptpay-qr.api.json",
"cli.js",
"api.d.ts"
],
"devDependencies": {
"@microsoft/api-extractor": "^7.19.4",
"jest": "^20.0.4",
"standard": "^10.0.3"
},
"name": "promptpay-qr",
"bin": {
"promptpay-qr": "./cli.js"
},
"version": "0.5.0",
"description": "Library to generate PromptPay payload and CLI script to generate QR code",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "standard index.js index.test.js",
"prepare": "api-extractor run"
},
"author": "Thai Pangsakulyanont <[email protected]> (http://dt.in.th/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dtinth/promptpay-qr.git"
},
"bugs": {
"url": "https://github.com/dtinth/promptpay-qr/issues"
},
"homepage": "https://github.com/dtinth/promptpay-qr#readme",
"docModel": "./promptpay-qr.api.json"
}