-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.57 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
{
"private": true,
"name": "berlin-gtfs-rt-server",
"description": "Expose Berlin & Brandenburg transit data as a GTFS-RT feed.",
"version": "4.0.1",
"type": "module",
"main": "index.js",
"keywords": [
"berlin",
"brandenburg",
"vbb",
"bvg",
"gtfs-rt",
"gtfs realtime",
"transit",
"public transport"
],
"author": "Jannis R <[email protected]>",
"contributors": [
"Begerad, Stefan <[email protected]>"
],
"homepage": "https://github.com/derhuerst/berlin-gtfs-rt-server",
"repository": "derhuerst/berlin-gtfs-rt-server",
"bugs": "https://github.com/derhuerst/berlin-gtfs-rt-server/issues",
"license": "(Apache-2.0 AND Prosperity-3.0.0)",
"funding": [
{
"type": "License Zero",
"url": "https://licensezero.com/offers/todo"
},
{
"type": "github",
"url": "https://github.com/sponsors/derhuerst"
},
{
"type": "patreon",
"url": "https://patreon.com/derhuerst"
}
],
"engines": {
"node": ">=16"
},
"dependencies": {
"cached-hafas-client": "^4.0.0",
"hafas-client": "^5.16.0",
"hafas-gtfs-rt-feed": "^8.1.0",
"ioredis": "^5.0.3",
"normalize-vbb-station-name-for-search": "^1.0.0",
"quick-lru": "^5.1.1",
"slugg": "^1.2.1"
},
"optionalDependencies": {
"localaddress-agent": "^2.0.1"
},
"devDependencies": {
"@derhuerst/technical-docs-cli": "^1.5.0",
"eslint": "^8.0.0",
"pino-pretty": "^10.3.1"
},
"scripts": {
"start": "./start.sh",
"docs": "./build-docs.js",
"lint": "eslint .",
"build": "./build.sh && npm run docs",
"test": "./test/index.sh",
"prepublishOnly": "npm run lint && npm run build && npm test"
}
}