-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
51
52
53
{
"name": "hafas-monitor-trips",
"description": "Using a HAFAS endpoint, watch all movements/vehicles in a bounding box, and optionally their trips.",
"version": "6.3.0",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"fetch-trips",
"lib",
"example.js"
],
"keywords": [
"hafas",
"public",
"transport",
"transit",
"trips",
"delays"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/hafas-monitor-trips",
"repository": "derhuerst/hafas-monitor-trips",
"bugs": "https://github.com/derhuerst/hafas-monitor-trips/issues",
"license": "ISC",
"engines": {
"node": ">=20"
},
"dependencies": {
"@turf/destination": "^6.5.0",
"@turf/distance": "^6.0.1",
"debug": "^4.1.1",
"ioredis": "^5.3.2",
"live-moving-average": "^1.0.0",
"p-queue": "^8.0.1",
"prom-client": "^15.1.0",
"sorted-array-functions": "^1.3.0"
},
"peerDependencies": {
"hafas-client": "^6"
},
"devDependencies": {
"eslint": "^8.45.0",
"hafas-client": "^6.1.0",
"vbb-hafas": "^8.0.1"
},
"scripts": {
"lint": "eslint .",
"test": "redis-cli flushdb && env DEBUG='hafas-monitor-trips:*' node test.js",
"redis": "printf 'save\nappendonly no' | redis-server - >/dev/null",
"prepublishOnly": "npm run lint && npm test"
}
}