-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
85 lines (85 loc) · 2.37 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@digital-go-jp/abr-geocoder",
"version": "2.1.2",
"description": "デジタル庁:アドレス・ベース・レジストリを用いたジオコーダー",
"author": "Japan Digital Agency (デジタル庁)",
"keywords": [
"geocoding",
"geocoder",
"typescript",
"nodejs",
"address-parse",
"address",
"japanese-address"
],
"repository": {
"type": "git",
"url": "git+https://github.com/digital-go-jp/abr-geocoder.git"
},
"bugs": {
"url": "https://github.com/digital-go-jp/abr-geocoder/issues"
},
"homepage": "https://github.com/digital-go-jp/abr-geocoder",
"license": "MIT",
"engines": {
"node": ">=20"
},
"bin": {
"abrg": "build/interface/cli/cli.js"
},
"scripts": {
"build": "npx rimraf build/ && npx tspc -p tsconfig.build.json && ts-add-js-extension --dir=build",
"test": "npx jest",
"test:e2e": "npx ts-node ./e2e/test-runner.ts",
"lint": "npx eslint",
"lint:fix": "npx eslint --fix"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin-js": "^2.8.0",
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/better-sqlite3": "^7.6.11",
"@types/busboy": "^1.5.4",
"@types/cli-progress": "^3.11.6",
"@types/i18n": "^0.13.12",
"@types/node": "^20.16.7",
"@types/proj4": "^2.5.5",
"@types/range-parser": "^1.2.7",
"@types/string-hash": "^1.1.3",
"@types/unzipper": "^0.10.10",
"@types/yargs": "^17.0.33",
"@typescript-eslint/parser": "^8.7.0",
"core-js": "^3.38.1",
"eslint": "^9.11.1",
"execa-cjs": "^9.1.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"rimraf": "^6.0.1",
"ts-add-js-extension": "^1.6.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"typescript": "5.5",
"typescript-eslint": "^8.7.0",
"typescript-transform-paths": "^3.5.1"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"buffer-crc32": "^1.0.0",
"busboy": "^1.6.0",
"cli-progress": "^3.12.0",
"csv-parser": "^3.0.0",
"http-status-codes": "^2.3.0",
"hyper-express": "^6.17.2",
"i18next": "^23.15.1",
"lru-cache": "^10.4.3",
"node-gyp": "^10.2.0",
"proj4": "^2.12.1",
"range-parser": "^1.2.1",
"string-hash": "^1.1.3",
"unzipper": "^0.11.6",
"winston": "^3.14.2",
"yargs": "^17.7.2"
}
}