-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
102 lines (102 loc) · 2.62 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "hafas-client",
"description": "Client for HAFAS public transport APIs.",
"version": "6.3.3",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"throttle.js",
"retry.js",
"lib",
"parse",
"format",
"p",
"docs"
],
"author": "Jannis R <[email protected]>",
"contributors": [
"Julius Tens <[email protected]>",
"n0emis <[email protected]>",
"em0lar <[email protected]>",
"Adrian Böhme <[email protected]> (https://github.com/Adwirawien)",
"Yureka <[email protected]>",
"Kristjan Esperanto (https://github.com/KristjanESPERANTO)",
"Marcel Radzio <[email protected]>",
"Benoit Deldicque (https://github.com/bddq)",
"roehrt",
"Sören Wegener (https://soerface.de/)",
"Paul Sutter <[email protected]>",
"1Maxnet1",
"Tim von Werne <[email protected]>"
],
"homepage": "https://github.com/public-transport/hafas-client/tree/6.3.3",
"repository": "public-transport/hafas-client",
"bugs": "https://github.com/public-transport/hafas-client/issues",
"funding": {
"url": "https://github.com/sponsors/derhuerst"
},
"license": "ISC",
"keywords": [
"hafas",
"public",
"transport",
"transit",
"api",
"http"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
},
"dependencies": {
"@derhuerst/br2nl": "^1.0.0",
"@derhuerst/round-robin-scheduler": "^1.0.4",
"content-type": "^1.0.4",
"create-hash": "^1.2.0",
"cross-fetch": "^4.0.0",
"google-polyline": "^1.0.3",
"gps-distance": "0.0.4",
"https-proxy-agent": "^7.0.0",
"lodash": "^4.17.5",
"luxon": "^3.1.1",
"object-scan": "^19.0.5",
"p-retry": "^6.0.0",
"p-throttle": "^5.0.0",
"qs": "^6.6.0",
"slugg": "^1.2.0"
},
"devDependencies": {
"@pollyjs/adapter-node-http": "^6.0.5",
"@pollyjs/core": "^6.0.5",
"@pollyjs/persister-fs": "^6.0.5",
"@stylistic/eslint-plugin": "^2.11.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"is-coordinates": "^2.0.2",
"is-roughly-equal": "^0.1.0",
"tap": "^19.2.5",
"validate-fptf": "^3.0.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test-unit": "tap test/lib/*.js test/*.js test/format/*.js test/parse/*.js",
"test-integration": "VCR_MODE=playback tap test/e2e/*.js",
"test-integration:record": "VCR_MODE=record tap -t60 -j1 test/e2e/*.js",
"test-e2e": "VCR_OFF=true tap -t60 -j16 test/e2e/*.js",
"test": "npm run test-unit && npm run test-integration",
"prepublishOnly": "npm run lint && npm test"
},
"tap": {
"disable-coverage": true,
"allow-empty-coverage": true,
"plugin": [
"!@tapjs/typescript",
"!@tapjs/mock",
"!@tapjs/snapshot",
"!@tapjs/intercept",
"!@tapjs/fixture"
]
}
}