-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
84 lines (84 loc) · 2.03 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
{
"name": "gtfs-via-postgres",
"description": "Process GTFS using PostgreSQL.",
"version": "4.10.2",
"main": "lib/index.js",
"bin": {
"gtfs-to-sql": "cli.js",
"serve-gtfs-via-graphql": "scripts/run-postgraphile.js"
},
"files": [
"cli.js",
"index.js",
"scripts",
"lib",
"docs",
"example.sh",
"LICENSE",
"LICENSE-PROSPERITY.md",
"LICENSE-APACHE"
],
"keywords": [
"gtfs",
"public transport",
"transit",
"convert",
"postgres",
"postgresql",
"sql",
"graphql"
],
"author": "Jannis R <[email protected]>",
"contributors": [
"Daniel Langbein <[email protected]>",
"Magnus Burton <[email protected]>",
"smohiudd <[email protected]>"
],
"homepage": "https://github.com/public-transport/gtfs-via-postgres/tree/4.9.0",
"repository": {
"type": "git",
"url": "git+https://github.com/public-transport/gtfs-via-postgres.git"
},
"bugs": "https://github.com/public-transport/gtfs-via-postgres/issues",
"license": "(Apache-2.0 AND Prosperity-3.0.0)",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/derhuerst"
},
{
"type": "patreon",
"url": "https://patreon.com/derhuerst"
}
],
"engines": {
"node": ">=16.17"
},
"dependencies": {
"csv-stringify": "^6.2.0",
"debug": "^4.3.3",
"gtfs-utils": "^5.1.0",
"sequencify": "0.0.7"
},
"devDependencies": {
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@graphile/postgis": "^0.2.0-0",
"csv-parser": "^3.0.0",
"eslint": "^8.33.0",
"pkg": "^5.3.2",
"postgraphile": "^4.12.11",
"sample-gtfs-feed": "^0.13.0"
},
"peerDependencies": {
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@graphile/postgis": "^0.2.0-0",
"postgraphile": "^4.12.11"
},
"scripts": {
"test": "./test/index.sh",
"lint": "eslint .",
"benchmark": "./benchmark/run.sh",
"build-binaries": "pkg --public -t node18-macos-x64,node18-macos-arm64,node18-linux-x64,node18-linux-arm64 -o dist/gtfs-via-postgres cli.js && gzip -k --best dist/gtfs-via-postgres-*",
"prepublishOnly": "npm run lint && npm test"
}
}