-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.53 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
69
70
71
{
"name": "hafas-rest-api",
"description": "Expose a HAFAS client via an HTTP REST API.",
"version": "5.1.3",
"main": "index.js",
"type": "module",
"files": [
"index.js",
"routes",
"lib",
"tools",
"logging.js",
"handle-errors.js",
"about-page.js",
"docs.js"
],
"keywords": [
"hafas",
"hafas-client",
"public transport",
"transit",
"http",
"fptf"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/public-transport/hafas-rest-api",
"repository": "public-transport/hafas-rest-api",
"bugs": "https://github.com/public-transport/hafas-rest-api/issues",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"compression": "^1.7.2",
"cors": "^2.8.4",
"date-fns": "^2.12.0",
"express": "^4.16.2",
"github-slugger": "^2.0.0",
"hsts": "^2.1.0",
"http-link-header": "^1.0.2",
"lodash": "^4.17.15",
"luxon": "^3.1.1",
"markdown-it": "^13.0.1",
"on-headers": "^1.0.2",
"parse-human-relative-time": "^3.0.0",
"pino": "^8.8.0",
"pino-http": "^8.2.1",
"shorthash": "0.0.2",
"stringify-entities": "^4.0.3"
},
"devDependencies": {
"axios": "^1.4.0",
"cached-hafas-client": "^5.0.0",
"eslint": "^8.0.1",
"get-port": "^7.0.0",
"hafas-client": "^6.0.0",
"ioredis": "^5.2.4",
"pino-pretty": "^10.0.1",
"tap-min": "^2.0.0",
"tape": "^5.1.1",
"tape-promise": "^4.0.0"
},
"peerDependencies": {
"hafas-client": "^6"
},
"scripts": {
"test": "node test/index.js | tap-min",
"lint": "eslint .",
"prepublishOnly": "npm test && npm run lint"
}
}