gtfs-bods
Version:
A CLI tool for processing UK Bus Open Data Service (BODS) GTFS data - import, export, and query transit data with ease
68 lines (67 loc) • 1.79 kB
JSON
{
"name": "gtfs-bods",
"version": "1.0.0",
"description": "A CLI tool for processing UK Bus Open Data Service (BODS) GTFS data - import, export, and query transit data with ease",
"main": "dist/index.js",
"type": "module",
"bin": {
"gtfs-bods": "dist/cli.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"gtfs",
"transit",
"bods",
"uk-bus-data",
"cli",
"sqlite",
"public-transport",
"gtfs-parser",
"bus-data",
"transportation",
"gtfs-tools",
"transit-data"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "npm run build && node dist/index.js",
"dev": "ts-node-esm src/index.ts",
"dev:cli": "ts-node-esm src/cli.ts",
"import": "npm run build && node dist/import.js",
"export": "npm run build && node dist/export.js",
"examples": "npm run build && node dist/examples.js",
"test": "echo \"Error: no test specified\" && exit 1",
"docker:build": "docker build -t gtfs-bods .",
"docker:run": "docker-compose up gtfs-processor",
"docker:run-oneshot": "docker-compose --profile oneshot up gtfs-processor-oneshot",
"docker:clean": "docker-compose down && docker system prune -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DRFR0ST/gtfs-bods.git"
},
"bugs": {
"url": "https://github.com/DRFR0ST/gtfs-bods/issues"
},
"homepage": "https://github.com/DRFR0ST/gtfs-bods#readme",
"author": "DRFR0ST",
"license": "ISC",
"dependencies": {
"chalk": "^5.5.0",
"commander": "^11.1.0",
"gtfs": "^4.9.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}