UNPKG

connection-scan-algorithm

Version:
58 lines (57 loc) 1.48 kB
{ "name": "connection-scan-algorithm", "version": "1.1.0", "description": "Connection Scan Algorithm", "main": "./dist/index.js", "types": "./dist/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/planarnetwork/connection-scan-algorithm.git" }, "scripts": { "test": "npm run lint && mocha --require ts-node/register **/*.spec.ts", "prepublishOnly": "rm -rf ./dist/ && tsc -p ./ --outDir dist/", "lint-raw": "tslint --project tsconfig.json", "lint": "npm run lint-raw -- -t stylish", "coverage": "nyc --reporter=text npm test", "start": "NODE_OPTIONS=$NODE_DEBUG_OPTION ts-node src/cli.ts", "perf": "NODE_OPTIONS=$NODE_DEBUG_OPTION ts-node src/performance.ts" }, "keywords": [ "Journey", "Planning", "Public", "Transport" ], "author": "Linus Norton <linusnorton@gmail.com>", "license": "GPL-3.0", "devDependencies": { "@types/chai": "^4.1.7", "@types/mocha": "^5.2.7", "@types/node": "^12.6.8", "chai": "^4.2.0", "mocha": "^6.2.0", "nyc": "^14.1.1", "ts-node": "^8.3.0", "tslint": "^5.18.0", "typescript": "^3.5.3" }, "dependencies": { "gtfs-stream": "^2.0.9", "ts-array-utils": "^0.5.0" }, "nyc": { "extends": "@istanbul/nyc-config-typescript", "all": true, "check-coverage": true, "extension": [ ".ts" ], "include": [ "src/**/*.ts" ], "exclude": [ "src/*.ts" ] } }