UNPKG

gtfs-to-html

Version:

Build human readable transit timetables as HTML, PDF or CSV from GTFS

121 lines (120 loc) 2.99 kB
{ "name": "gtfs-to-html", "version": "2.12.12", "private": false, "description": "Build human readable transit timetables as HTML, PDF or CSV from GTFS", "keywords": [ "transit", "gtfs", "gtfs-realtime", "transportation", "timetables" ], "homepage": "https://gtfstohtml.com", "bugs": { "url": "https://github.com/blinktaginc/gtfs-to-html/issues" }, "repository": "git://github.com/blinktaginc/gtfs-to-html", "license": "MIT", "author": "Brendan Nee <brendan@blinktag.com>", "contributors": [ "Evan Siroky <evan.siroky@yahoo.com>", "Nathan Selikoff", "Aaron Antrim <aaron@trilliumtransit.com>", "Thomas Craig <thomas@trilliumtransit.com>", "Holly Kvalheim", "Pawajoro", "Andrea Mignone", "Evo Stamatov", "Sebastian Knopf" ], "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "docker", "examples", "scripts", "views/default", "config-sample.json" ], "bin": { "gtfs-to-html": "dist/bin/gtfs-to-html.js" }, "scripts": { "build": "tsup && node scripts/copy-browser-assets.js", "start": "node ./dist/app", "prepare": "husky && pnpm run build", "prepack": "husky && pnpm run build" }, "dependencies": { "@turf/helpers": "^7.3.5", "@turf/simplify": "^7.3.5", "archiver": "^8.0.0", "cli-table": "^0.3.11", "css.escape": "^1.5.1", "csv-stringify": "^6.7.0", "express": "^5.2.1", "gtfs": "^4.18.7", "js-beautify": "^1.15.4", "lodash-es": "^4.18.1", "marked": "^18.0.4", "moment": "^2.30.1", "pretty-error": "^4.0.0", "pug": "^3.0.4", "puppeteer": "^25.1.0", "sanitize-filename": "^1.6.4", "sanitize-html": "^2.17.4", "sqlstring": "^2.3.3", "toposort": "^2.0.2", "yargs": "^18.0.0", "yoctocolors": "^2.1.2" }, "devDependencies": { "@maplibre/maplibre-gl-geocoder": "^1.9.4", "@types/archiver": "^7.0.0", "@types/cli-table": "^0.3.4", "@types/express": "^5.0.6", "@types/js-beautify": "^1.14.3", "@types/lodash-es": "^4.17.12", "@types/node": "^25", "@types/pug": "^2.0.10", "@types/sanitize-html": "^2.16.1", "@types/sqlstring": "^2.3.2", "@types/toposort": "^2.0.7", "@types/yargs": "^17.0.35", "anchorme": "^3.0.8", "gtfs-realtime-pbf-js-module": "^1.0.0", "husky": "^9.1.7", "lint-staged": "^17.0.5", "maplibre-gl": "^5.24.0", "pbf": "^5.0.0", "prettier": "^3.8.3", "tsup": "^8.5.1", "typescript": "^6.0.3" }, "engines": { "node": ">= 22" }, "packageManager": "pnpm@11.4.0", "release-it": { "github": { "release": true }, "plugins": { "@release-it/keep-a-changelog": { "filename": "CHANGELOG.md" } }, "hooks": { "after:bump": "pnpm run build" } }, "prettier": { "singleQuote": true }, "lint-staged": { "*.{js,ts,json}": "prettier --write" } }