-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"version": "0.0.6",
"name": "gtfs-parser",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.cjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "bun test",
"build": "tsup ./src/index.ts && npm run build:declaration && npm run postbuild",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"postbuild": "rimraf tsconfig.types.tsbuildinfo"
},
"files": [
"dist/*.cjs",
"dist/*.d.ts"
],
"devDependencies": {
"bun-types": "latest",
"gtfs-types": "^3.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"author": "Walter Jenkins",
"license": "MIT",
"dependencies": {
"@types/adm-zip": "^0.5.4",
"@types/geojson": "^7946.0.13",
"adm-zip": "^0.5.10",
"axios": "^1.6.2",
"csv-parse": "^5.5.2",
"csvtojson": "^2.0.10",
"request": "^2.88.2",
"zod": "^3.22.4"
},
"description": "The GTFS-PARSER library is supposed to be a simple way to parse GTFS zip files from urls. It should be able to handle reading zip files without taking up space on your harddrive and convert the text files to json array's based on the GTFS specification. It takes the liberty of converting non-string fields over to integers, but by default the csvtojson library used under the hood will convert everything to strings.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AvidDabbler/gtfs-parser.git"
},
"keywords": [
"gtfs",
"public",
"transit"
],
"bugs": {
"url": "https://github.com/AvidDabbler/gtfs-parser/issues"
},
"homepage": "https://github.com/AvidDabbler/gtfs-parser#readme"
}