-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "hafas-find-stations",
"description": "Given a HAFAS client, find all stations in a bounding box.",
"version": "2.1.0",
"main": "index.js",
"files": [
"index.js",
"example.js",
"lib"
],
"keywords": [
"hafas",
"public transport",
"transit",
"stations"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/hafas-find-stations",
"repository": "derhuerst/hafas-find-stations",
"bugs": "https://github.com/derhuerst/hafas-find-stations/issues",
"license": "ISC",
"engines": {
"node": ">=10"
},
"dependencies": {
"@turf/bbox": "^6.0.1",
"@turf/boolean-point-in-polygon": "^6.0.1",
"@turf/buffer": "^5.1.5",
"@turf/center-of-mass": "^6.0.1",
"@turf/destination": "^6.0.1",
"@turf/distance": "^6.0.1",
"@turf/point-grid": "^6.0.1",
"debug": "^4.1.1",
"p-queue": "^6.2.0"
},
"peerDependencies": {
"hafas-client": "^5"
},
"devDependencies": {
"hafas-client": "^5.3.1"
},
"scripts": {
"test": "node test.js",
"prepublishOnly": "npm test"
}
}