db-vendo-client/package.json

71 lines
1.6 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": "3.10.1",
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": [
"Julius Tens <mail@juliustens.eu>"
],
"homepage": "https://github.com/public-transport/hafas-client/tree/3.4.3",
2018-03-19 22:34:08 +01:00
"repository": "public-transport/hafas-client",
"bugs": "https://github.com/public-transport/hafas-client/issues",
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": {
"node": ">=8.3.0"
2017-10-03 17:36:42 +02:00
},
2016-06-22 01:39:59 +02:00
"dependencies": {
2018-05-16 21:07:05 +02:00
"@mapbox/polyline": "^1.0.0",
2018-06-07 18:46:24 +02:00
"br2nl": "^1.0.0",
2018-01-23 01:24:37 +01:00
"capture-stack-trace": "^1.0.0",
"create-hash": "^1.2.0",
"fetch-ponyfill": "^6.0.0",
2018-05-16 21:07:05 +02:00
"gps-distance": "0.0.4",
2018-02-15 17:45:20 +01:00
"lodash": "^4.17.5",
2018-06-30 13:40:39 +02:00
"luxon": "^1.3.0",
2018-09-03 20:38:56 +02:00
"p-retry": "^2.0.0",
2018-12-16 17:05:33 +01:00
"p-throttle": "^2.1.0",
2017-10-04 22:15:01 +02:00
"pinkie-promise": "^2.0.1",
"query-string": "^6.0.0",
2017-11-18 17:53:12 +01:00
"slugg": "^1.2.0",
2018-02-15 17:45:20 +01:00
"vbb-parse-line": "^0.3.1",
"vbb-parse-ticket": "^0.2.1",
"vbb-short-station-name": "^1.0.1",
2018-02-15 17:45:20 +01:00
"vbb-stations": "^6.2.1",
2017-11-20 01:05:48 +01:00
"vbb-translate-ids": "^3.1.0"
2016-06-28 12:58:31 +02:00
},
"devDependencies": {
2018-02-15 17:45:20 +01:00
"db-stations": "^2.3.0",
"is-coordinates": "^2.0.2",
"is-roughly-equal": "^0.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.8.0",
2018-10-15 20:13:06 +02:00
"tape-promise": "^4.0.0",
2018-04-25 12:48:05 +02:00
"validate-fptf": "^2.0.1",
2018-02-15 17:45:20 +01:00
"vbb-stations-autocomplete": "^3.1.0"
2016-06-28 12:58:31 +02:00
},
"scripts": {
2018-09-03 15:45:31 +02:00
"test": "env NODE_ENV=dev node test/index.js",
2018-07-26 19:03:28 +02:00
"prepublishOnly": "npm test | tap-spec",
"install": "node lib/generate-install-id.js >id.json"
2016-06-22 01:39:59 +02:00
}
2016-06-22 01:39:04 +02:00
}