-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "uic-918-3",
"version": "1.0.5",
"description": "Package for decoding and parsing barcodes according to UIC-918.3 specification, which are used commonly on public transport online tickets.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf coverage build tmp postinstall",
"postinstall": "node postinstall/updateCerts.js",
"build": "tsc -p tsconfig.json",
"build:postinstall": "tsc -p tsconfig.postinstall.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run lint && npm run clean && tsc -p tsconfig.release.json && npm run build:postinstall",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write .",
"prepare": "husky"
},
"author": "Francis Doege",
"contributors": [
{
"name": "Arne Breitsprecher",
"url": "https://github.com/arnebr"
},
{
"name": "Ulf Winkelvos",
"url": "https://github.com/uwinkelvos"
}
],
"license": "MIT",
"dependencies": {
"axios": "^1.6.3",
"jsrsasign": "^11.0.0",
"lodash": "^4.17.11",
"tslib": "^2.6.2",
"xml2js": "^0.6.2",
"zxing-wasm": "^1.2.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jsrsasign": "^10.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.8",
"@types/randomstring": "^1.1.11",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"randomstring": "^1.1.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justusjonas74/uic-918-3.git"
},
"keywords": [
"uic-918-3",
"online-ticket",
"deutsche-bahn",
"barcode",
"aztec"
],
"bugs": {
"url": "https://github.com/justusjonas74/uic-918-3/issues"
},
"homepage": "https://github.com/justusjonas74/uic-918-3#readme"
}