UNPKG

gtfs-realtime

Version:
78 lines (77 loc) 1.7 kB
{ "name": "gtfs-realtime", "version": "0.4.3", "description": "Fetch GTFS Realtime data and convert to JSON", "keywords": [ "transit", "gtfs", "transportation", "gtfs-realtime", "gtfs-rt" ], "bugs": { "url": "https://github.com/blinktaginc/node-gtfs-realtime/issues" }, "repository": { "type": "git", "url": "git://github.com/blinktaginc/node-gtfs-realtime.git" }, "license": "MIT", "author": "Brendan Nee <brendan@blinktag.com>", "contributors": [], "type": "module", "main": "./dist/index.js", "bin": { "gtfs-realtime": "dist/bin/gtfs-realtime.js" }, "types": "./dist/index.d.ts", "scripts": { "build": "tsup", "prepare": "husky" }, "dependencies": { "gtfs-realtime-bindings": "^1.1.1", "lodash-es": "^4.17.21", "pretty-error": "^4.0.0", "untildify": "^5.0.0", "yargs": "^18.0.0", "yoctocolors": "^2.1.1" }, "devDependencies": { "@types/lodash-es": "^4.17.12", "@types/node": "^22.15.32", "@types/yargs": "^17.0.33", "eslint": "^9.29.0", "eslint-config-prettier": "^10.1.5", "husky": "^9.1.7", "lint-staged": "^16.1.2", "prettier": "^3.5.3", "tsup": "^8.5.0", "typescript": "^5.8.3" }, "engines": { "node": ">= 20" }, "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" } }