-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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": "bysquare",
"description": "It's a national standard for payment QR codes adopted by Slovak Banking Association (SBA)",
"version": "2.12.1",
"license": "Apache-2.0",
"funding": "https://github.com/sponsors/xseman",
"homepage": "https://github.com/xseman/bysquare#readme",
"author": "Filip Seman <filip.seman@pm.me>",
"keywords": [
"pay by square",
"qr string",
"paybysquare",
"bysquare"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xseman/bysquare.git"
},
"scripts": {
"build": "tsc --build",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"typecheck": "tsc --noEmit",
"test": "TS_NODE_TRANSPILE_ONLY=true node --test --experimental-test-coverage --loader=ts-node/esm --no-warnings src/*.test.ts",
"test:watch": "TS_NODE_TRANSPILE_ONLY=true node --test --watch --loader=ts-node/esm --no-warnings src/*.test.ts"
},
"dependencies": {
"lzma1": "0.0.5",
"validator": "^13.12.0"
},
"devDependencies": {
"@types/node": "^22.7.0",
"@types/validator": "^13.12.0",
"dprint": "~0.47.0",
"ts-node": "~10.9.0",
"typescript": "~5.6.0"
},
"type": "module",
"bin": "./dist/cli.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/*.test.*"
]
}