-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.48 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.48 KB
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": "db-rest",
"description": "A clean REST API wrapping around the Deutsche Bahn API.",
"version": "6.1.1",
"type": "module",
"bin": {
"db-rest": "./index.js"
},
"main": "index.js",
"files": [
"docs",
"lib",
"routes",
"api.js",
"index.js"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/db-rest/tree/6",
"repository": "derhuerst/db-rest",
"bugs": "https://github.com/derhuerst/db-rest/issues",
"license": "ISC",
"keywords": [
"public",
"transport",
"api",
"http",
"rest",
"deutsche bahn",
"db"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"cached-hafas-client": "^5.1.9",
"cli-native": "^1.0.0",
"db-stations": "^5.0.2",
"db-stations-autocomplete": "^4.1.0",
"db-vendo-client": "^6.10.8",
"etag": "^1.8.1",
"hafas-client-health-check": "^2.1.2",
"hafas-rest-api": "^5.1.3",
"ioredis": "^5.8.2",
"serve-buffer": "^3.0.3",
"serve-static": "^1.14.1"
},
"optionalDependencies": {
"localaddress-agent": "^2.1.1"
},
"devDependencies": {
"@derhuerst/technical-docs-cli": "^1.5.0",
"axios": "^1.12.2",
"eslint": "^8.57.1",
"get-port": "^6.1.2",
"ndjson": "^2.0.0",
"pino-pretty": "^9.4.1",
"tap-min": "^3.0.0",
"tape": "^5.9.0"
},
"scripts": {
"build": "REDIS_URL='' ./build/index.js",
"start": "node index.js",
"lint": "eslint .",
"test": "node test/index.js | tap-min"
},
"goatCounterUrl": "https://37462fdee48390778258.goatcounter.com/count"
}