{
  "name": "raptor-journey-planner",
  "version": "2.2.3",
  "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 && mocha --require ts-node/register 'test/**/*.spec.ts'",
    "gtest": "mocha --require ts-node/register 'test/**/*.spec.ts' --grep",
    "watch-test": "mocha -w --require ts-node/register 'test/**/*.spec.ts'",
    "prepublishOnly": "rm -rf ./dist/ && tsc -p ./ --outDir dist/",
    "lint": "eslint --ext .ts 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": {
    "@types/chai": "^4.3.6",
    "@types/mocha": "^10.0.1",
    "@types/mysql": "^2.15.21",
    "@types/node": "^14.14.31",
    "@types/progress": "^2.0.5",
    "@typescript-eslint/eslint-plugin": "^6.7.0",
    "@typescript-eslint/parser": "^6.7.0",
    "chai": "^4.3.8",
    "eslint": "^8.49.0",
    "mocha": "^10.2.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2"
  },
  "dependencies": {
    "gtfs-stream": "^2.2.0",
    "mysql2": "^3.6.1",
    "progress": "^2.0.3",
    "ts-array-utils": "^0.5.0"
  }
}
