forked from planarnetwork/gb-transit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.34 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
{
"name": "dtd2db",
"version": "6.6.0",
"description": "Command line tool to put the GB rail DTD feed into a MySQL or Snowflake database",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/src",
"dist/config"
],
"bin": {
"dtd2db": "bin/dtd2db.sh"
},
"scripts": {
"test": "NODE_OPTIONS='--experimental-specifier-resolution=node' mocha --require ts-node/register --require tsconfig-paths/register 'test/**/*.spec.ts'",
"gtest": "mocha --require ts-node/register 'test/**/*.spec.ts' --grep",
"watch-test": "mocha -w --require ts-node/register 'test/**/*.spec.ts'",
"dev": "node dev.js",
"build": "node build.js",
"start": "node dist/bundle.js",
"prepublishOnly": "tsc -p ./ --outDir dist/ && tsc-alias",
"gtfs": "NODE_OPTIONS='--max-old-space-size=16384' ts-node ./src/index.ts --gtfs",
"gtfs-zip": "NODE_OPTIONS='--max-old-space-size=16384' ts-node ./src/index.ts --gtfs-zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seatfrog/dtd2db.git"
},
"keywords": [
"gb",
"rail",
"etl",
"fares",
"routeing",
"timetable",
"dtd"
],
"author": "Linus Norton",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/seatfrog/dtd2db/issues"
},
"homepage": "https://github.com/seatfrog/dtd2db#readme",
"dependencies": {
"@types/proj4": "^2.5.6",
"adm-zip": "^0.5.10",
"byline": "^5.0.0",
"csv-write-stream": "^2.0.0",
"memoized-class-decorator": "^1.6.1",
"moment": "^2.29.4",
"mysql2": "^3.6.1",
"proj4": "^2.11.0",
"snowflake-sdk": "^2.1.0",
"ssh2": "^1.14.0",
"stream-to-promise": "^2.0.0"
},
"engines": {
"node": "^20.0.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/byline": "^4.2.33",
"@types/chai": "^5.2.2",
"@types/chai-as-promised": "^8.0.2",
"@types/csv-write-stream": "^2.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.19",
"@types/sinon": "^17.0.4",
"@types/sinon-chai": "^4.0.0",
"@types/ssh2": "^1.15.5",
"@types/stream-to-promise": "^2.2.1",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"mocha": "^11.3.0",
"sinon": "^20.0.0",
"sinon-chai": "^4.0.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}