-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.8 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
{
"name": "@hebcal/geo-sqlite",
"version": "5.1.0",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"keywords": [
"hebcal"
],
"description": "Hebcal ES6 interface to GeoNames and USA ZIP code SQLite databases",
"module": "./dist/index.mjs",
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"types": "./geo-sqlite.d.ts"
},
"bin": {
"build-geonames-sqlite": "bin/build-geonames-sqlite",
"download-and-make-dbs": "bin/download-and-make-dbs"
},
"repository": {
"type": "git",
"url": "https://github.com/hebcal/hebcal-geo-sqlite.git"
},
"bugs": {
"url": "https://github.com/hebcal/hebcal-geo-sqlite/issues"
},
"typings": "geo-sqlite.d.ts",
"engines": {
"node": ">= 20.0.0"
},
"files": [
"dist",
"bin",
"cities-patch.txt",
"zips-dummy.sql",
"geo-sqlite.d.ts"
],
"dependencies": {
"@hebcal/cities": "^5.0.1",
"@hebcal/core": "^5.8.3",
"better-sqlite3": "^11.7.0",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"transliteration": "^2.3.5"
},
"scripts": {
"build:rollup": "rollup -c",
"build:json2js": "for f in src/*.json; do echo 'export default' > $f.js && cat $f >> $f.js; done",
"build": "npm run build:json2js && npm run build:rollup",
"prepublish": "npm run build",
"readme": "npx jsdoc2md dist/index.js",
"test": "ava"
},
"license": "BSD-2-Clause",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"ava": "^6.2.0",
"eslint": "^9.16.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-n": "^17.14.0",
"globals": "^15.13.0",
"jsdoc": "^4.0.4",
"jsdoc-to-markdown": "^9.1.1",
"rollup": "^4.28.1"
}
}