UNPKG

raptor-journey-planner

Version:

Implementation of the Round bAsed Public Transit Optimized Router (Raptor) journey planning algorithm.

51 lines (50 loc) 1.5 kB
{ "name": "raptor-journey-planner", "version": "2.3.1", "description": "Implementation of the Round bAsed Public Transit Optimized Router (Raptor) journey planning algorithm.", "main": "./dist/src/index.js", "types": "./dist/src/index.d.ts", "scripts": { "test": "npm run lint && vitest run", "gtest": "vitest run -t", "watch-test": "vitest", "prepublishOnly": "rm -rf ./dist/ && tsc -p ./ --outDir dist/", "lint": "biome lint src/ test/", "int": "ts-node ./test/integration.ts", "perf": "ts-node ./test/performance.ts", "patterns": "NODE_OPTIONS='--max-old-space-size=6000' ts-node ./src/transfer-patterns.ts", "test-patterns": "ts-node ./test/transfer-patterns.ts" }, "repository": { "type": "git", "url": "git+https://github.com/planarnetwork/raptor.git" }, "keywords": [ "Journey", "planning", "algorith", "public", "transit" ], "author": "Linus Norton <linusnorton@gmail.com>", "license": "GPL-3.0", "bugs": { "url": "https://github.com/planarnetwork/raptor/issues" }, "homepage": "https://github.com/planarnetwork/raptor#readme", "devDependencies": { "@biomejs/biome": "2.4.13", "@types/mysql": "2.15.27", "@types/node": "24.6.1", "@types/progress": "2.0.7", "ts-node": "^10.9.2", "typescript": "5.9.3", "vitest": "^4.1.5" }, "dependencies": { "gtfs-stream": "^3.0.0", "mysql2": "^3.22.2", "progress": "2.0.3", "ts-array-utils": "1.0.5" } }