-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
{
"name": "interrail",
"version": "3.0.4",
"description": "Find european train stations and routes. Client for the European Interrail / EuRail API.",
"keywords": [
"api",
"bahn",
"eurail",
"europe",
"european",
"interrail",
"railway",
"train"
],
"homepage": "https://github.com/juliuste/interrail",
"bugs": "https://github.com/juliuste/interrail/issues",
"repository": "juliuste/interrail",
"license": "ISC",
"author": "Julius Tens <mail@juliustens.eu>",
"contributors": [
"Pepijn Schoen <pepijn@eliandor.com>"
],
"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": {
"fetch-ponyfill": "^6.1.1",
"fpti-util": "^0.1.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"query-string": "^6.13.5",
"slugg": "^1.2.1"
},
"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"
}
}