-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1018 Bytes
/
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
{
"name": "db-prices-cli",
"description": "Check prices for a DB route.",
"version": "1.0.0",
"files": [
"render.js",
"where.js",
"prices.js"
],
"bin": {
"db-prices": "prices.js"
},
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/db-prices-cli",
"repository": "derhuerst/db-prices-cli",
"bugs": "https://github.com/derhuerst/db-prices-cli/issues",
"license": "ISC",
"preferGlobal": true,
"engines": {
"node": ">=14"
},
"keywords": [
"prices",
"db",
"deutsche",
"bahn",
"german",
"railways"
],
"dependencies": {
"chalk": "^4.1.2",
"cli-autocomplete": "^0.4",
"cli-table2": "^0.2",
"db-prices": "^3.0.3",
"db-stations": "^4.1.0",
"db-stations-autocomplete": "^3.0.1",
"moment": "^2.14.1",
"mri": "^1.1.0",
"normalize-for-search": "^2.0.1"
},
"devDependencies": {
"eslint": "^8.0.1"
},
"scripts": {
"lint": "eslint .",
"test": "./prices.js 8011160 8000261 --days 1",
"prepublishOnly": "npm run lint && npm test"
}
}