-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"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"
}
}