forked from BlinkTagInc/node-gtfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.99 KB
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
{
"name": "gtfs",
"description": "Import GTFS transit data into mongodb and query routes, stops, times, fares and more",
"version": "1.1.0",
"keywords": [
"transit",
"gtfs",
"transportation",
"geojson"
],
"author": "Brendan Nee <brendan@blinktag.com>",
"contributors": [
"Alessio Bogon",
"Jacob Childress <jacobc@gmail.com>",
"Robin Chou <hello@robinchou.com>",
"cobralibre <jacobc@gmail.com>",
"Matt Gruskin",
"Sam Hashemi <sam@samhashemi.com>",
"Hafiz Ismail",
"LeAnne Lis",
"Ethan Lo <ethan@ethanlo.com>",
"Natalie Perna",
"Léo Pradel",
"Landon Reed",
"Jason Schapiro <yono38@gmail.com>",
"Jean-François Vial <jeff@modulaweb.fr>",
"wdalrymple",
"Ivan Yulaev",
"Adam Pitchie",
"Daniel Demidov",
"gerlacdt",
"Heath Shurtleff",
"Marcelo Muñoz Araya <ma.munoz.araya@gmail.com>",
"David Aghassi",
"Steven Prins",
"W3stside",
"pitrz"
],
"dependencies": {
"csv": "^1.1.1",
"extract-zip": "^1.6.5",
"fs-extra": "^4.0.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mongodb": "2.2.31",
"mongoose": "4.11.8",
"node-fetch": "^1.7.2",
"proj4": "^2.4.4",
"untildify": "^3.0.2",
"yargs": "^8.0.2"
},
"devDependencies": {
"csv-parse": "1.2.1",
"eslint-config-xo": "^0.18.2",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-unicorn": "^2.1.2",
"mocha": "3.5.0",
"should": "11.2.1",
"timekeeper": "1.0.0",
"xo": "0.18.2"
},
"repository": {
"type": "git",
"url": "git://github.com/blinktaginc/node-gtfs.git"
},
"bugs": {
"url": "https://github.com/blinktaginc/node-gtfs/issues"
},
"bin": {
"gtfs-import": "bin/gtfs-import.js"
},
"main": "index",
"scripts": {
"test": "NODE_ENV=test mocha ./test/mocha/**/*.js --timeout 3000",
"lint": "xo"
},
"license": "MIT",
"engines": {
"node": ">= 8.1.4"
},
"xo": {
"esnext": true,
"space": true
}
}