-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.08 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
86
87
88
89
{
"name": "@spurreiter/geocoder",
"version": "2.1.1",
"description": "Node geocoding library, google maps, bing maps, mapquest, mapbox, here maps, arcgis, nominatim, ...",
"keywords": [
"geocoder",
"geocoding",
"google-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",
"type": "module",
"exports": {
".": {
"require": "./lib/index.cjs",
"import": "./src/index.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./src/index.js",
"types": "./types",
"directories": {
"lib": "lib",
"example": "examples",
"test": "test"
},
"scripts": {
"all": "npm-run-all clean test build lint types",
"clean": "rimraf types coverage lib",
"lint": "eslint --fix --ext js .",
"build": "./scripts/version.cjs && rollup -c",
"test": "c8 mocha",
"types": "rimraf types; tsc && cp src/*.d.ts types"
},
"mocha": {
"exit": true,
"recursive": true,
"timeout": 5000
},
"dependencies": {
"agentkeepalive": "^4.5.0",
"got": "^14.4.4",
"i18n-iso-countries": "^7.12.0"
},
"devDependencies": {
"@types/node": "^22.8.7",
"c8": "^10.1.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"mocha": "^10.8.2",
"npm-run-all2": "^7.0.1",
"rimraf": "^6.0.1",
"rollup": "^4.24.4",
"serialize-to-module": "^1.1.0",
"sinon": "^19.0.2",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}