-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.77 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.77 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
{
"name": "dtd2mysql",
"version": "6.6.3",
"description": "Command line tool to put the GB rail DTD feed into a MySQL compatible database",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/src",
"dist/config"
],
"bin": {
"dtd2mysql": "bin/dtd2mysql.sh"
},
"scripts": {
"test": "mocha --require ts-node/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'",
"start": "ts-node ./src/index.ts",
"prepublishOnly": "tsc -p ./ --outDir dist/",
"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/open-track/dtd2mysql.git"
},
"keywords": [
"gb",
"rail",
"etl",
"fares",
"routeing",
"timetable",
"dtd"
],
"author": "Linus Norton",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/open-track/dtd2mysql/issues"
},
"homepage": "https://github.com/open-track/dtd2mysql#readme",
"dependencies": {
"adm-zip": "0.5.16",
"byline": "5.0.0",
"csv-write-stream": "2.0.0",
"memoized-class-decorator": "1.6.1",
"moment": "2.30.1",
"mysql2": "3.15.1",
"proj4": "2.19.10",
"ssh2": "1.17.0",
"stream-to-promise": "3.0.0"
},
"devDependencies": {
"@types/byline": "4.2.36",
"@types/chai": "5.2.2",
"@types/mocha": "10.0.10",
"@types/node": "24.6.1",
"@types/ssh2": "1.15.5",
"@types/stream-to-promise": "2.2.4",
"chai": "6.2.0",
"mocha": "11.7.3",
"ts-node": "10.9.2",
"typescript": "5.9.3"
}
}