-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.31 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "db-prices",
"version": "3.0.3",
"description": "Find the cheapest routes using the DB Sparpreise API.",
"keywords": [
"DB",
"allemand",
"bahn",
"deutsch",
"fare",
"german",
"preis",
"railway",
"sparpreis",
"train"
],
"homepage": "https://github.com/juliuste/db-prices",
"bugs": "https://github.com/juliuste/db-prices/issues",
"repository": "juliuste/db-prices",
"license": "ISC",
"author": "Julius Tens <mail@juliustens.eu>",
"contributors": [
"Jannis R <mail@jannisr.de>"
],
"files": [
"lib/*"
],
"main": "lib/index.js",
"scripts": {
"check-deps": "depcheck",
"fix": "eslint --fix lib test.js",
"lint": "eslint lib test.js",
"prepublishOnly": "npm test",
"test": "npm run lint && npm run check-deps && node test"
},
"dependencies": {
"fetch-ponyfill": "^6.1.0",
"lodash.minby": "^4.6.0",
"moment-timezone": "^0.5.27",
"query-string": "^6.8.3",
"slugg": "^1.2.1"
},
"devDependencies": {
"db-stations": "^2.11.0",
"depcheck": "^0.9.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"is-roughly-equal": "^0.1.0",
"tape": "^4.11.0",
"tape-promise": "^4.0.0"
},
"engines": {
"node": ">=10"
}
}