UNPKG

gtfs-to-blocks

Version:

Generate CSV of transit departure times organized by block_id in GTFS.

75 lines (74 loc) 1.65 kB
{ "name": "gtfs-to-blocks", "version": "0.3.13", "private": false, "description": "Generate CSV of transit departure times organized by block_id in GTFS.", "keywords": [ "transit", "gtfs", "transportation", "timetables" ], "license": "MIT", "author": "Brendan Nee <brendan@blinktag.com>", "contributors": [], "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "gtfs-to-blocks": "dist/bin/gtfs-to-blocks.js" }, "scripts": { "prepare": "husky", "build": "tsdown", "build-watch": "tsdown --watch" }, "dependencies": { "chalk": "^5.6.2", "cli-table": "^0.3.11", "csv-stringify": "^6.8.1", "gtfs": "^4.20.0", "lodash-es": "^4.18.1", "moment": "^2.30.1", "pretty-error": "^4.0.0", "sanitize-filename": "^1.6.4", "sqlstring": "^2.3.3", "timer-machine": "^1.1.0", "yargs": "^18.1.0" }, "devDependencies": { "@types/lodash-es": "^4.17.12", "@types/timer-machine": "^1.1.3", "@types/yargs": "^17.0.35", "husky": "^9.1.7", "lint-staged": "^17.2.0", "prettier": "^3.9.6", "tsdown": "^0.22.14", "typescript": "^6.0.3" }, "engines": { "node": ">= 22" }, "release-it": { "github": { "release": true }, "plugins": { "@release-it/keep-a-changelog": { "filename": "CHANGELOG.md" } }, "hooks": { "after:bump": "npm run build" } }, "prettier": { "singleQuote": true, "semi": false }, "lint-staged": { "*.js": "prettier --write", "*.ts": "prettier --write", "*.json": "prettier --write" } }