UNPKG

nextbus-to-gtfs-rt

Version:

A script that converts the nextbus api to gtfs-rt

53 lines 1.6 kB
{ "name": "nextbus-to-gtfs-rt", "version": "3.0.0", "description": "A script that converts the nextbus api to gtfs-rt", "main": "./lib/index.js", "scripts": { "test": "mocha \"test/**/*.js\"", "precover": "rimraf coverage", "cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- test/**/*.js", "codeclimate-send": "cross-env CODECLIMATE_REPO_TOKEN=6d7eeb23555fb0892744f730d2fea3479cb513dc5a27cf3cdfeca9567cadff4a ./node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info", "codeclimate": "npm run cover && npm run codeclimate-send", "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, "keywords": [ "transit", "nextbus", "gtfs", "gtfs-rt" ], "author": "Evan Siroky", "license": "MIT", "dependencies": { "async": "^2.0.0-rc.5", "debug": "^2.2.0", "gtfs-realtime-bindings": "0.0.4", "moment": "^2.14.1", "request": "^2.74.0", "xml2js": "^0.4.17", "yargs": "^6.0.0" }, "devDependencies": { "chai": "^3.5.0", "chai-json-schema": "chaijs/chai-json-schema", "codeclimate-test-reporter": "^0.4.0", "cross-env": "^3.0.0", "cz-conventional-changelog": "^1.1.6", "fs-extra": "^0.30.0", "istanbul": "^0.4.3", "mocha": "^3.0.0", "nock": "^9.0.0", "rimraf": "^2.5.2", "semantic-release": "^4.3.5" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "repository": { "type": "git", "url": "https://github.com/evansiroky/nextbus-to-gtfs-rt.git" } }