-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 914 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 914 Bytes
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
{
"name": "hafas-fetch-track-slice",
"description": "Pass in a HAFAS trip ID, get a slice between stations of its track.",
"version": "2.0.0",
"main": "index.js",
"files": [
"index.js"
],
"keywords": [
"hafas",
"hafas-client",
"public transport",
"transit"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/hafas-fetch-track-slice",
"repository": "derhuerst/hafas-fetch-track-slice",
"bugs": "https://github.com/derhuerst/hafas-fetch-track-slice/issues",
"license": "ISC",
"engines": {
"node": ">=12"
},
"dependencies": {
"@turf/line-slice": "^6.3.0"
},
"peerDependencies": {
"hafas-client": "^5.0.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"tap-min": "^2.0.0",
"tape": "^5.2.2",
"vbb-hafas": "^7.0.3"
},
"scripts": {
"test": "node test.js | tap-min",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm test"
}
}