-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.35 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@spurreiter/geocoder",
"version": "2.3.1",
"description": "Node geocoding library, google maps, bing maps, mapquest, mapbox, here maps, arcgis, nominatim, ...",
"keywords": [
"geocoder",
"geocoding",
"google-maps-api",
"azure-maps-api",
"bing-maps-api",
"mapquest-api",
"mapbox-api",
"arcgis-api",
"here-maps-api",
"ipstack-api",
"geoip2",
"nominatim-api",
"osm",
"pelias",
"pickpoint-api",
"yandex-api"
],
"homepage": "https://github.com/spurreiter/geocoder#readme",
"bugs": {
"url": "https://github.com/spurreiter/geocoder/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/spurreiter/geocoder.git"
},
"license": "MIT",
"author": "spurreiter",
"sideEffects": false,
"type": "module",
"imports": {
"#*": {
"default": "./src/*"
}
},
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./lib/index.cjs",
"default": "./src/index.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./src/index.js",
"types": "./types",
"files": [
"lib",
"src",
"types"
],
"scripts": {
"all": "npm-run-all clean build test lint types",
"build": "npm-run-all build:clean build:version build:do",
"build:clean": "rimraf lib",
"build:do": "rollup -c",
"build:version": "./scripts/version.cjs",
"clean": "rimraf coverage",
"lint": "eslint .",
"test": "c8 mocha",
"types": "npm-run-all types:clean types:do",
"types:clean": "rimraf types",
"types:do": "tsc"
},
"mocha": {
"exit": true,
"recursive": true,
"timeout": 5000
},
"c8": {
"exclude": [
"lib/**/*.cjs"
]
},
"dependencies": {
"agentkeepalive": "^4.6.0",
"got": "^14.6.6",
"i18n-iso-countries": "^7.14.0"
},
"devDependencies": {
"@types/node": "^25.0.10",
"c8": "^10.1.3",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.1.0",
"mocha": "^11.7.5",
"npm-run-all2": "^8.0.4",
"rimraf": "^6.1.2",
"rollup": "^4.56.0",
"serialize-to-module": "^1.1.0",
"sinon": "^21.0.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}