-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.72 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
{
"name": "transxchange2gtfs",
"version": "1.12.0",
"description": "Converts transxchange data to GTFS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"transxchange2gtfs": "bin/transxchange2gtfs.sh"
},
"files": [
"dist",
"bin",
"README.md",
"logo.png"
],
"scripts": {
"start": "tsx src/cli.ts",
"prepublishOnly": "rm -rf dist && tsc -p ./ --outDir dist/ && cp -r ./resource ./dist/",
"test": "vitest run",
"lint": "biome check src test",
"lint:fix": "biome check --write src test",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planarnetwork/transxchange2gtfs.git"
},
"keywords": [
"transxchange",
"gtfs",
"transit",
"data"
],
"author": "Linus Norton <linusnorton@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/planarnetwork/transxchange2gtfs/issues"
},
"homepage": "https://github.com/planarnetwork/transxchange2gtfs#readme",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@types/autobind-decorator": "^2.1.0",
"@types/follow-redirects": "^1.14.4",
"@types/node": "^22",
"@types/xml2js": "^0.4.14",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^3.3.1",
"@vitest/coverage-v8": "^4.1.5",
"tsx": "^4.21.0",
"typescript": "^5.9.0",
"vitest": "^4.1.5"
},
"dependencies": {
"@js-joda/core": "^6.0.1",
"autobind-decorator": "^2.4.0",
"csv-parse": "^6.2.1",
"csv-stringify": "^6.7.0",
"date-holidays": "^3.27.0",
"follow-redirects": "^1.16.0",
"rimraf": "^6.1.3",
"xml2js": "^0.6.2",
"yauzl": "^3.3.0",
"yazl": "^3.3.1"
}
}