-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "vdv-453-nats-adapter",
"description": "Sends realtime public transport data from a VDV-453/VDV-454 API to a NATS message broker.",
"version": "1.1.0",
"preferGlobal": true,
"type": "module",
"main": "index.js",
"bin": {
"send-vdv-453-data-to-nats": "./cli.js"
},
"files": [
"cli.js",
"index.js",
"lib"
],
"keywords": [
"vdv 453",
"vdv 454",
"realtime",
"public transport",
"transit",
"nats"
],
"author": "Verkehrsverbund Berlin Brandenburg <[email protected]>",
"contributors": [
"Jannis R <[email protected]>"
],
"homepage": "https://github.com/OpenDataVBB/vdv-453-nats-adapter",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenDataVBB/vdv-453-nats-adapter.git"
},
"bugs": "https://github.com/OpenDataVBB/vdv-453-nats-adapter/issues",
"license": "ISC",
"engines": {
"node": ">=20"
},
"dependencies": {
"luxon": "^3.4.4",
"nats": "^2.22.0",
"prom-client": "^15.1.3",
"vdv-453-client": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"pino-pretty": "^11.0.0"
},
"scripts": {
"test": "./test/index.sh",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm test"
}
}