-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "cached-hafas-client",
"description": "Pass in a HAFAS client, cache data from it.",
"version": "5.1.8",
"main": "index.js",
"type": "module",
"files": [
"index.js",
"stores",
"no-results.js",
"with-metrics.js",
"example.js"
],
"keywords": [
"hafas",
"hafas-client",
"cache",
"storage"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/public-transport/cached-hafas-client",
"repository": "public-transport/cached-hafas-client",
"bugs": "https://github.com/public-transport/cached-hafas-client/issues",
"license": "ISC",
"engines": {
"node": ">=16"
},
"dependencies": {
"common-prefix": "^1.1.0",
"debug": "^4.0.0",
"ioredis": "^5.2.4",
"lodash": "^4.17.10",
"quick-lru": "^6.1.1",
"shallow-clone": "^3.0.1"
},
"devDependencies": {
"deep-equal": "^2.2.1",
"eslint": "^8.29.0",
"luxon": "^3.1.1",
"p-retry": "^6.2.0",
"prom-client": "^15.1.0",
"sqlite3": "^5.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"tape-promise": "^4.0.0",
"vbb-hafas": "^8.0.0"
},
"cached-hafas-client": {
"dataVersion": 4
},
"peerDependencies": {
"hafas-client": ">=6.0 <=6.3",
"prom-client": "^15.1.0"
},
"scripts": {
"lint": "eslint . && test/lint-lua-code.sh",
"test": "env NODE_ENV=dev node test/index.js | tap-spec",
"prepublishOnly": "npm run lint && npm test"
}
}