forked from juliuste/oebb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.23 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
{
"name": "oebb",
"version": "1.0.0",
"description": "Austrian Federal Railways (ÖBB) API client.",
"keywords": [
"api",
"austria",
"bahn",
"bundesbahn",
"client",
"oebb",
"railway",
"train",
"öbb",
"österreich",
"österreichische"
],
"homepage": "https://github.com/juliuste/oebb",
"bugs": "https://github.com/juliuste/oebb/issues",
"repository": "juliuste/oebb",
"license": "ISC",
"author": "Julius Tens <[email protected]>",
"main": "lib/index.js",
"files": [
"lib/*"
],
"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": {
"fpti-util": "^0.1.0",
"got": "^11.7.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"query-string": "^6.13.5"
},
"devDependencies": {
"depcheck": "^1.2.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fpti-tests": "0.0.0",
"tape": "^5.0.1",
"tape-promise": "^4.0.0",
"validate-fptf": "^3.0.0"
},
"engines": {
"node": ">=10"
}
}