-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 926 Bytes
/
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
{
"name": "emvqr-parser",
"description": "JavaScript library for parsing EMV QR Codes",
"version": "1.0.6",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc && tsc-alias",
"test": "jest --silent=false --forceExit",
"retest": "jest --silent=false --forceExit --only-failures"
},
"repository": {
"type": "git",
"url": "https://github.com/AbrahamOsmondE/emvqr-parser.git"
},
"licese": "UNLICENSED",
"author": "AbrahamOsmondE",
"dependencies": {
"nodemon": "^3.0.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/jest-when": "^3.5.2",
"@types/node": "^18.13.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.2",
"typescript": "^5.1.6"
},
"files": [
"build/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"type": "commonjs"
}