-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.12 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
47
48
49
50
51
52
53
{
"name": "hafas-cli",
"description": "Build a command line interface for any HAFAS endpoint.",
"version": "2.0.0",
"files": [
"departures.js",
"journeys.js",
"lib",
"example.js"
],
"keywords": [
"hafas",
"hafas-client",
"public transport",
"transit",
"command line",
"cli"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/hafas-cli",
"repository": "derhuerst/hafas-cli",
"bugs": "https://github.com/derhuerst/hafas-cli/issues",
"license": "ISC",
"engines": {
"node": ">=14"
},
"dependencies": {
"@derhuerst/location": "^1.0.0",
"chalk": "^4.1.1",
"cli-autocomplete": "^0.4.1",
"cli-table3": "^0.6.0",
"date-prompt": "^1.0.0",
"fptf-mode-emojis": "^0.1.0",
"luxon": "^1.0.0",
"ms": "^2.1.1",
"multiselect-prompt": "^0.3.1",
"number-prompt": "^0.2.0",
"pad-right": "^0.2.2",
"parse-messy-time": "^2.1.0",
"pify": "^5.0.0",
"select-prompt": "^0.3.1"
},
"peerDependencies": {
"hafas-client": "^5.16.0"
},
"devDependencies": {
"hafas-client": "^5.16.0"
},
"scripts": {
"test": "node test/index.js",
"prepublishOnly": "npm run test"
}
}