forked from evansiroky/gtfs-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "gtfs-sequelize",
"version": "0.2.3",
"description": "A model for the static GTFS using sequelize.",
"main": "index.js",
"scripts": {
"test-download": "mocha tests/testDownload.js",
"test-pg": "npm run test-download && npm run test-pg-load",
"test-pg-load": "mocha tests/testPg.js",
"test-postgis": "npm run test-download && npm run test-postgis-load",
"test-postgis-load": "mocha tests/testPostGIS.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/djstroky/gtfs-sequelize.git"
},
"keywords": [
"gtfs",
"transit",
"database"
],
"author": "Evan Siroky",
"license": "MIT",
"bugs": {
"url": "https://github.com/djstroky/gtfs-sequelize/issues"
},
"homepage": "https://github.com/djstroky/gtfs-sequelize#readme",
"dependencies": {
"async": "^1.4.2",
"csv": "^0.4.6",
"moment": "^2.10.6",
"request": "^2.60.0",
"sequelize": "^3.5.1",
"unzip2": "^0.2.5"
},
"devDependencies": {
"mocha": "^2.2.5",
"pg": "^4.4.0",
"pg-hstore": "^2.3.2",
"q": "^1.4.1"
}
}