-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
63
64
{
"name": "gtfs-io",
"type": "module",
"version": "0.3.0",
"description": "IO operations for reading and writing GTFS datasets and GTFS type definitions.",
"main": "dist/index.js",
"keywords": [
"gtfs",
"read",
"write",
"reading",
"writing",
"reader",
"writer"
],
"scripts": {
"build": "npx tsc",
"test": "npm run build && npx vitest run --config ./vitest.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ponlawat-w/gtfs-io.git"
},
"author": {
"name": "Ponlawat Weerapanpisit",
"email": "ponlawat_w@outlook.co.th"
},
"files": [
"dist/*"
],
"exports": {
".": { "default": "./dist/index.js", "types": "./dist/index.d.ts" },
"./feed": { "default": "./dist/feed.js", "types": "./dist/feed.d.ts" },
"./file-info": { "default": "./dist/file-info.js", "types": "./dist/file-info.d.ts" },
"./files": { "default": "./dist/files.js", "types": "./dist/files.d.ts" },
"./io": { "default": "./dist/io.js", "types": "./dist/io.d.ts" },
"./io/fs": { "default": "./dist/io-fs.js", "types": "./dist/io-fs.d.ts" },
"./io/memory": { "default": "./dist/io-memory.js", "types": "./dist/io-memory.d.ts" },
"./types": { "types": "./dist/types.d.ts" }
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ponlawat-w/gtfs-io/issues"
},
"homepage": "https://github.com/ponlawat-w/gtfs-io#readme",
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/node": "^20.10.3",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"stream-browserify": "^3.0.0",
"typescript": "^5.3.2",
"util": "^0.12.5",
"vitest": "^1.0.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"adm-zip": "^0.5.10",
"csv": "^6.3.5"
}
}