2017-10-23 23:13:53 +02:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"name": "db-rest",
|
2017-11-04 21:07:20 +01:00
|
|
|
"description": "A clean REST API wrapping around the Deutsche Bahn API.",
|
2020-04-30 15:05:18 +02:00
|
|
|
"version": "5.0.0",
|
2017-10-23 23:13:53 +02:00
|
|
|
"main": "index.js",
|
|
|
|
"author": "Jannis R <mail@jannisr.de>",
|
2020-04-30 15:05:18 +02:00
|
|
|
"homepage": "https://github.com/derhuerst/db-rest/tree/5",
|
2017-10-23 23:13:53 +02:00
|
|
|
"repository": "derhuerst/db-rest",
|
|
|
|
"bugs": "https://github.com/derhuerst/db-rest/issues",
|
|
|
|
"license": "ISC",
|
|
|
|
"keywords": [
|
|
|
|
"public",
|
|
|
|
"transport",
|
|
|
|
"api",
|
|
|
|
"http",
|
2017-11-04 21:07:20 +01:00
|
|
|
"rest",
|
|
|
|
"deutsche bahn",
|
|
|
|
"db"
|
2017-10-23 23:13:53 +02:00
|
|
|
],
|
|
|
|
"engines": {
|
2020-04-30 15:48:06 +02:00
|
|
|
"node": ">=10"
|
2017-10-23 23:13:53 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-05-01 20:15:27 +02:00
|
|
|
"cached-hafas-client": "^3.1.1",
|
2017-10-24 23:45:35 +02:00
|
|
|
"cli-native": "^1.0.0",
|
2020-04-30 15:48:06 +02:00
|
|
|
"db-hafas": "^5.0.2",
|
|
|
|
"db-stations": "^3.0.0",
|
|
|
|
"db-stations-autocomplete": "^2.2.0",
|
2020-05-01 18:10:21 +02:00
|
|
|
"etag": "^1.8.1",
|
2020-04-30 15:48:06 +02:00
|
|
|
"hafas-client-health-check": "^2.1.1",
|
2021-02-04 19:20:03 +01:00
|
|
|
"hafas-rest-api": "^3.6.0",
|
2020-05-01 20:15:27 +02:00
|
|
|
"redis": "^3.0.2",
|
2020-10-02 18:33:38 +02:00
|
|
|
"serve-buffer": "^2.0.0",
|
|
|
|
"serve-static": "^1.14.1"
|
2017-10-23 23:13:53 +02:00
|
|
|
},
|
2020-04-30 15:48:06 +02:00
|
|
|
"devDependencies": {
|
2020-10-02 18:33:38 +02:00
|
|
|
"@derhuerst/technical-docs-cli": "^1.1.0",
|
2020-04-30 15:48:06 +02:00
|
|
|
"pino-pretty": "^4.0.0"
|
|
|
|
},
|
2017-10-23 23:13:53 +02:00
|
|
|
"scripts": {
|
2020-10-04 13:46:14 +02:00
|
|
|
"docs": "node api-docs.js >docs/api.md && build-technical-doc --syntax-stylesheet-url /syntax.css <docs/readme.md >docs/index.html && build-technical-doc --syntax-stylesheet-url /syntax.css <docs/getting-started.md >docs/getting-started.html && build-technical-doc --syntax-stylesheet-url /syntax.css <docs/api.md >docs/api.html && build-technical-doc --syntax-stylesheet github >docs/syntax.css",
|
2020-05-01 20:12:24 +02:00
|
|
|
"build": "npm run docs",
|
2017-10-23 23:13:53 +02:00
|
|
|
"start": "node index.js"
|
|
|
|
}
|
|
|
|
}
|