db-vendo-client/package.json

90 lines
2.3 KiB
JSON
Raw Normal View History

2016-06-22 01:39:04 +02:00
{
2017-10-03 17:36:42 +02:00
"name": "hafas-client",
2018-10-15 17:34:25 +02:00
"description": "Client for HAFAS public transport APIs.",
"version": "5.23.0",
2017-10-03 17:36:42 +02:00
"main": "index.js",
"files": [
"index.js",
2018-01-24 16:03:33 +01:00
"throttle.js",
2019-02-08 13:13:53 +01:00
"retry.js",
2017-11-11 22:49:04 +01:00
"lib",
2017-11-11 22:35:41 +01:00
"parse",
2017-11-12 23:51:39 +01:00
"format",
"p",
"docs"
2017-10-03 17:36:42 +02:00
],
"author": "Jannis R <mail@jannisr.de>",
2018-01-07 19:08:06 +01:00
"contributors": [
2020-02-07 16:11:47 +01:00
"Julius Tens <mail@juliustens.eu>",
2020-09-09 15:25:54 +02:00
"n0emis <n0emis@noemis.me>",
"em0lar <hello@em0lar.de>",
"Adrian Böhme <hannsadrian@gmail.com> (https://github.com/Adwirawien)",
"Yureka <github@yuka.dev>",
2021-11-18 18:29:25 +01:00
"Kristjan Esperanto (https://github.com/KristjanESPERANTO)",
"Marcel Radzio <mtrnord@nordgedanken.dev>",
"Benoit Deldicque (https://github.com/bddq)"
2018-01-07 19:08:06 +01:00
],
"homepage": "https://github.com/public-transport/hafas-client/tree/5.23.0",
2018-03-19 22:34:08 +01:00
"repository": "public-transport/hafas-client",
"bugs": "https://github.com/public-transport/hafas-client/issues",
2020-11-15 13:43:26 +01:00
"funding": {
"url": "https://github.com/sponsors/derhuerst"
},
2017-10-03 17:36:42 +02:00
"license": "ISC",
"keywords": [
"hafas",
"public",
"transport",
2017-11-11 21:06:54 +01:00
"transit",
2017-10-03 17:36:42 +02:00
"api",
2017-11-11 21:06:54 +01:00
"http"
2017-10-03 17:36:42 +02:00
],
"engines": {
2020-01-05 17:49:05 +01:00
"node": ">=10"
2017-10-03 17:36:42 +02:00
},
2016-06-22 01:39:59 +02:00
"dependencies": {
2019-03-27 18:31:56 +01:00
"@derhuerst/br2nl": "^1.0.0",
"@derhuerst/round-robin-scheduler": "^1.0.4",
2018-01-23 01:24:37 +01:00
"capture-stack-trace": "^1.0.0",
"content-type": "^1.0.4",
"create-hash": "^1.2.0",
2020-11-15 13:39:53 +01:00
"fetch-ponyfill": "^7.0.0",
2020-01-31 18:07:16 +01:00
"google-polyline": "^1.0.3",
2018-05-16 21:07:05 +02:00
"gps-distance": "0.0.4",
2020-09-21 13:18:31 +02:00
"https-proxy-agent": "^5.0.0",
2018-02-15 17:45:20 +01:00
"lodash": "^4.17.5",
2018-06-30 13:40:39 +02:00
"luxon": "^1.3.0",
"object-scan": "^13.0.0",
2019-06-07 11:36:29 +02:00
"p-retry": "^4.1.0",
2021-06-28 23:33:05 +02:00
"p-throttle": "^4.1.1",
2017-10-04 22:15:01 +02:00
"pinkie-promise": "^2.0.1",
2019-02-05 19:07:19 +01:00
"qs": "^6.6.0",
2017-11-18 17:53:12 +01:00
"slugg": "^1.2.0",
"vbb-parse-line": "^1.0.0",
"vbb-parse-ticket": "^0.2.1",
"vbb-short-station-name": "^1.0.1",
"vbb-stations": "^7.1.0",
"vbb-translate-ids": "^4.0.0"
2016-06-28 12:58:31 +02:00
},
"devDependencies": {
"eslint": "^7.0.0",
"is-coordinates": "^2.0.2",
"is-roughly-equal": "^0.1.0",
"replayer": "^2.2.3",
2021-05-20 16:42:43 +01:00
"tap": "^15.0.9",
"validate-fptf": "^3.0.0"
2016-06-28 12:58:31 +02:00
},
"scripts": {
2020-02-27 11:30:26 +01:00
"lint": "eslint .",
2021-05-20 16:42:43 +01:00
"test-unit": "tap 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 -j16 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"
2021-05-20 16:42:43 +01:00
},
"tap": {
"coverage": false
2016-06-22 01:39:59 +02:00
}
2016-06-22 01:39:04 +02:00
}