gtfs-to-blocks
Version:
Generate CSV of transit departure times organized by block_id in GTFS.
75 lines (74 loc) • 1.68 kB
JSON
{
"name": "gtfs-to-blocks",
"version": "0.3.4",
"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": {
"build": "tsup",
"prepare": "husky"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-table": "^0.3.11",
"csv-stringify": "^6.5.2",
"gtfs": "^4.16.0",
"lodash-es": "^4.17.21",
"moment": "^2.30.1",
"pretty-error": "^4.0.0",
"sanitize-filename": "^1.6.3",
"sqlstring": "^2.3.3",
"timer-machine": "^1.1.0",
"untildify": "^5.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/timer-machine": "^1.1.3",
"@types/yargs": "^17.0.33",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-config-xo": "^0.46.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"engines": {
"node": ">= 12.14.0"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
},
"prettier": {
"singleQuote": true,
"semi": false
},
"lint-staged": {
"*.js": "prettier --write",
"*.ts": "prettier --write",
"*.json": "prettier --write"
}
}