-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "vbb-hafas",
"description": "JavaScript client for the VBB HAFAS API.",
"version": "8.0.1",
"main": "index.js",
"type": "module",
"files": [
"index.js",
"throttle.js",
"retry.js",
"example.js",
"lib"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/public-transport/vbb-hafas/tree/8",
"repository": "public-transport/vbb-hafas",
"bugs": "https://github.com/public-transport/vbb-hafas/issues",
"license": "ISC",
"keywords": [
"vbb",
"bvg",
"berlin",
"brandenburg",
"public transport",
"transit",
"hafas",
"hafas-client"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"hafas-client": "^6.0.0",
"merged-vbb-stations": "^2.0.0",
"vbb-change-positions": "github:derhuerst/vbb-change-positions#2.0.0-alpha.1",
"vbb-line-colors": "^1.0.2"
},
"devDependencies": {
"eslint": "^8.28.0",
"vbb-stations": "^8.3.1"
},
"scripts": {
"lint": "eslint .",
"smoke-test": "env NODE_ENV=dev node example.js >/dev/null",
"test": "node test/add-transfer-info.js",
"prepublishOnly": "npm run lint && npm test && npm run smoke-test"
}
}