-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"name": "hafas-linked-connections-server",
"description": "Create a Linked Connections endpoint from a HAFAS client.",
"version": "2.0.1",
"main": "index.js",
"files": [
"index.js",
"example.js",
"lib"
],
"keywords": [
"public transport",
"transit",
"linked connections",
"routing",
"hafas",
"hafas-client"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/hafas-linked-connections-server",
"repository": "derhuerst/hafas-linked-connections-server",
"bugs": "https://github.com/derhuerst/hafas-linked-connections-server/issues",
"license": "ISC",
"engines": {
"node": ">=14"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^2.4.1",
"date-fns-tz": "^1.2.0",
"express": "^4.17.1",
"hafas-find-stations": "^2.1.0",
"hafas-monitor-trips": "^5.0.0",
"lodash": "^4.17.15",
"p-queue": "^6.1.1"
},
"peerDependencies": {
"hafas-client": "^5"
},
"devDependencies": {
"cached-hafas-client": "^4.0.5",
"eslint": "^8.5.0",
"hafas-client": "^5.24.1",
"sqlite3": "^5.0.0",
"tap-min": "^2.0.0",
"tape": "^5.0.1"
},
"scripts": {
"lint": "eslint .",
"test": "env NODE_ENV=dev node test.js | tap-min",
"prepublishOnly": "npm run lint && npm test"
}
}