db-vendo-client/package.json

64 lines
1.4 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",
2017-11-11 21:06:54 +01:00
"description": "JavaScript client for HAFAS public transport APIs.",
"version": "2.7.2",
2017-10-03 17:36:42 +02:00
"main": "index.js",
"files": [
"index.js",
2018-01-24 16:03:33 +01:00
"throttle.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>"
],
2018-03-19 22:34:08 +01:00
"homepage": "https://github.com/public-transport/hafas-client",
"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": ">=6"
},
2016-06-22 01:39:59 +02:00
"dependencies": {
2018-01-23 01:24:37 +01:00
"capture-stack-trace": "^1.0.0",
"fetch-ponyfill": "^6.0.0",
2018-02-15 17:45:20 +01:00
"lodash": "^4.17.5",
"luxon": "^0.5.8",
2018-01-23 15:54:39 +01:00
"p-throttle": "^1.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",
2017-11-20 01:05:48 +01:00
"vbb-short-station-name": "^0.4.0",
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": "^4.1.1",
"tape": "^4.8.0",
"tape-promise": "^3.0.0",
2018-02-15 17:45:20 +01:00
"validate-fptf": "^1.2.1",
"vbb-stations-autocomplete": "^3.1.0"
2016-06-28 12:58:31 +02:00
},
"scripts": {
"test": "env NODE_ENV=dev NODE_DEBUG=hafas-client node test/index.js",
2017-11-29 02:12:49 +01:00
"prepublishOnly": "npm test | tap-spec"
2016-06-22 01:39:59 +02:00
}
2016-06-22 01:39:04 +02:00
}