forked from pelias/transit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "pelias-transit",
"version": "0.0.0-development",
"description": "Import Stops, Intersections, P&Rs, TCs, TVMs and other landmark data related to transit, etc...",
"main": "index.js",
"scripts": {
"start": "./bin/start",
"test": "./bin/test",
"download": "./bin/download",
"lint": "jshint .",
"ci": "npm test",
"validate": "npm ls"
},
"author": "fpurcell",
"attribution": "code based off of Delaware Schools from trescube https://github.com/trescube/delaware-schools-pelias-importer, as well as other Pelias loader projects",
"license": "MPL-2.0",
"dependencies": {
"@hapi/joi": "^16.1.0",
"combined-stream": "1.0.8",
"csv-parse": "^4.4.5",
"decompress": "^4.0.0",
"JSONStream": "^1.3.1",
"lodash": "^4.16.0",
"pelias-config": "^4.8.0",
"pelias-dbclient": "^2.13.0",
"pelias-logger": "^1.4.1",
"pelias-model": "^7.1.0",
"pelias-wof-admin-lookup": "^7.7.0",
"sync-request": "^6.1.0",
"through2": "^3.0.1"
},
"devDependencies": {
"jshint": "^2.10.3",
"precommit-hook": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/transit.git"
},
"keywords": [
"pelias",
"geocoder",
"transit"
],
"bugs": {
"url": "https://github.com/pelias/transit/issues"
},
"homepage": "https://github.com/pelias/transit",
"pre-commit": [
"lint",
"validate",
"test"
],
"release": {
"branch": "master",
"success": []
}
}