db-vendo-client/package.json

60 lines
1.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",
2017-11-11 21:06:54 +01:00
"description": "JavaScript client for HAFAS public transport APIs.",
"version": "2.0.0",
2017-10-03 17:36:42 +02:00
"main": "index.js",
"files": [
"index.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>",
2017-12-29 10:04:24 +01:00
"contributors": ["Julius Tens <mail@juliustens.eu>"],
2017-10-03 17:36:42 +02:00
"homepage": "https://github.com/derhuerst/hafas-client",
"repository": "derhuerst/hafas-client",
"bugs": "https://github.com/derhuerst/hafas-client/issues",
"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": {
2017-10-04 22:15:01 +02:00
"fetch-ponyfill": "^4.1.0",
2017-11-20 15:43:13 +01:00
"lodash": "^4.17.4",
"luxon": "^0.2.11",
2017-10-04 22:15:01 +02:00
"pinkie-promise": "^2.0.1",
"query-string": "^5.0.0",
2017-11-18 17:53:12 +01:00
"slugg": "^1.2.0",
2017-12-16 07:54:39 +01:00
"vbb-parse-line": "^0.2.5",
"vbb-parse-ticket": "^0.2.1",
2017-11-20 01:05:48 +01:00
"vbb-short-station-name": "^0.4.0",
2017-12-18 23:33:29 +01:00
"vbb-stations": "^5.9.0",
2017-11-20 01:05:48 +01:00
"vbb-translate-ids": "^3.1.0"
2016-06-28 12:58:31 +02:00
},
"devDependencies": {
2017-11-29 02:27:31 +01:00
"co": "^4.6.0",
"db-stations": "^1.34.0",
"is-coordinates": "^2.0.2",
"is-roughly-equal": "^0.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"tape-promise": "^2.0.1",
2018-01-07 19:01:22 +01:00
"validate-fptf": "^1.2.0",
2017-12-18 23:33:29 +01:00
"vbb-stations-autocomplete": "^2.11.0"
2016-06-28 12:58:31 +02:00
},
"scripts": {
2017-11-29 02:12:49 +01:00
"test": "node test/index.js",
"prepublishOnly": "npm test | tap-spec"
2016-06-22 01:39:59 +02:00
}
2016-06-22 01:39:04 +02:00
}