-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 1.86 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
{
"name": "dtd2mysql",
"version": "6.6.0",
"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": {
"@types/proj4": "^2.5.5",
"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",
"ssh2": "^1.14.0",
"stream-to-promise": "^3.0.0"
},
"engines": {
"node": "^14.14.0"
},
"devDependencies": {
"@types/byline": "^4.2.33",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^16.11.6",
"@types/ssh2": "^1.11.13",
"@types/stream-to-promise": "^2.2.1",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}