db-vendo-client/package.json

48 lines
980 B
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 00:53:34 +01:00
"format"
2017-10-03 17:36:42 +02:00
],
"author": "Jannis R <mail@jannisr.de>",
"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",
"moment-timezone": "^0.5.13",
2017-10-04 22:15:01 +02:00
"pinkie-promise": "^2.0.1",
"query-string": "^5.0.0",
"slugg": "^1.2.0"
2016-06-28 12:58:31 +02:00
},
"devDependencies": {
"db-stations": "^1.25.0",
"floordate": "^3.0.0",
"is-roughly-equal": "^0.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"tape-promise": "^2.0.1"
},
2016-06-28 12:58:31 +02:00
"scripts": {
"test": "node test/index.js | tap-spec",
2017-10-04 22:15:01 +02:00
"prepublishOnly": "npm test"
2016-06-22 01:39:59 +02:00
}
2016-06-22 01:39:04 +02:00
}