This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "router",
"version": "1.0.0",
"description": "Flexible transit router written in TypeScript",
"main": "src/cli.ts",
"scripts": {
"lint": "tslint src/*.ts test/*.ts",
"test": "tsc && yarn lint && yarn run run-tests && yarn run run-golden-tests",
"run-tests": "mocha --compilers ts:ts-node/register test/*_test.ts",
"run-golden-tests": "./test/generate-sample-routes.sh",
"perf": "ts-node test/perf/performance.ts",
"postinstall": "unzip -o test/nyc-gtfs.zip -d test/nyc-gtfs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sidewalklabs/router.git"
},
"keywords": [
"gtfs",
"transit",
"routing"
],
"author": "Dan Vanderkam (danvk@sidewalklabs.com)",
"bugs": {
"url": "https://github.com/sidewalklabs/router/issues"
},
"homepage": "https://github.com/sidewalklabs/router#readme",
"dependencies": {
"@turf/bbox-polygon": "^3.5.2",
"@turf/helpers": "^3.5.2",
"@turf/inside": "^3.5.2",
"@types/body-parser": "0.0.33",
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/csv-stringify": "0.0.32",
"@types/es6-collections": "^0.5.29",
"@types/es6-promise": "0.0.32",
"@types/express": "^4.0.34",
"@types/geojson": "0.0.31",
"@types/lodash": "^4.14.178",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.52",
"@types/rbush": "^2.0.2",
"@types/sprintf-js": "0.0.27",
"@types/tmp": "0.0.32",
"body-parser": "^1.15.2",
"chai-roughly": "^1.0.0",
"classnames": "^2.2.5",
"connect-gzip-static": "^1.0.0",
"csv-stringify": "^1.0.4",
"d3-scale": "^1.0.3",
"express": "^4.14.0",
"js-cookie": "^2.1.3",
"json-stable-stringify": "^1.0.1",
"jsts": "^1.3.0",
"lodash": "^4.17.21",
"morgan": "^1.7.0",
"polyline": "^0.2.0",
"prop-types": "^15.5.8",
"qs": "^6.4.0",
"rbush": "^2.0.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"request": "^2.81.0",
"source-map-loader": "^0.1.5",
"sprintf-js": "^1.0.3",
"tmp": "0.0.29",
"topojson-client": "^2.1.0",
"turf-overlaps": "^1.0.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"@types/classnames": "0.0.32",
"@types/d3-scale": "^1.0.3",
"@types/google.analytics": "0.0.28",
"@types/googlemaps": "^3.26.15",
"@types/js-cookie": "^2.0.28",
"@types/json-stable-stringify": "^1.0.29",
"@types/polyline": "^0.1.27",
"@types/prop-types": "^15.5.1",
"@types/qs": "^6.2.31",
"@types/react": "15.6.2",
"@types/react-dom": "^15.5.4",
"@types/request": "^0.0.45",
"@types/underscore": "^1.7.36",
"assert": "^1.4.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mocha": "^3.0.0",
"stream-transform": "^0.1.1",
"ts-loader": "^4.4.1",
"ts-node": "^9.1.1",
"tslint": "^3.14.0",
"typescript": "^4.2.4",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
}
}