-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "@rapideditor/location-conflation",
"version": "1.4.0",
"license": "ISC",
"repository": "github:rapideditor/location-conflation",
"contributors": [
"Bryan Housel <[email protected]> (https://github.com/bhousel)"
],
"description": "Define complex geographic regions by including and excluding country codes and geojson shapes",
"keywords": [
"geofence",
"location",
"locationset",
"include",
"exclude",
"geojson"
],
"files": [
"index.mjs",
"dist/"
],
"type": "module",
"source": "./index.mjs",
"main": "./dist/location-conflation.cjs",
"module": "./index.mjs",
"exports": {
"import": "./index.mjs",
"require": "./dist/location-conflation.cjs"
},
"scripts": {
"all": "run-s clean test",
"clean": "shx rm -rf dist",
"build": "run-s build:**",
"build:browser": "esbuild ./index.mjs --platform=browser --format=iife --global-name=LocationConflation --bundle --sourcemap --outfile=./dist/location-conflation.iife.js",
"build:cjs": "esbuild ./index.mjs --platform=node --format=cjs --sourcemap --outfile=./dist/location-conflation.cjs",
"lint": "eslint index.mjs test/*.js",
"test": "run-s lint build test:node",
"test:node": "c8 node --test test/*.js"
},
"dependencies": {
"@aitodotai/json-stringify-pretty-compact": "^1.3.0",
"@mapbox/geojson-area": "^0.2.2",
"@rapideditor/country-coder": "^5.3.0",
"circle-to-polygon": "^2.2.0",
"geojson-precision": "^1.0.0",
"polyclip-ts": "~0.16.5"
},
"devDependencies": {
"c8": "^10.1.2",
"esbuild": "^0.23.1",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}