-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.48 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.48 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
{
"name": "id-area-keys",
"version": "6.5.0",
"license": "ISC",
"repository": "github:osmlab/id-area-keys",
"description": "OpenStreetMap area tags extracted from the iD editor presets",
"keywords": [
"OpenStreetMap",
"area",
"tags"
],
"contributors": [
"Bryan Housel <bhousel@gmail.com> (https://github.com/bhousel)"
],
"type": "module",
"main": "./dist/areaKeys.cjs",
"module": "./dist/areaKeys.mjs",
"exports": {
"require": "./dist/areaKeys.cjs",
"import": "./dist/areaKeys.mjs",
"*": "./*"
},
"devDependencies": {
"@openstreetmap/id-tagging-schema": "6.5.0",
"esbuild": "^0.23.1",
"json-stringify-pretty-compact": "^4.0.0",
"locale-compare": "^2.0.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4"
},
"scripts": {
"all": "run-s clean build dist test",
"build": "run-s build:json",
"build:json": "node build.js",
"clean": "shx rm -rf ./areaKeys.json dist/",
"dist": "run-p dist:**",
"dist:browser": "esbuild ./index.mjs --platform=browser --format=iife --bundle --global-name=areaKeys --sourcemap --outfile=./dist/areaKeys.iife.js",
"dist:cjs": "esbuild ./index.mjs --platform=node --format=cjs --bundle --sourcemap --outfile=./dist/areaKeys.cjs",
"dist:mjs": "esbuild ./index.mjs --platform=neutral --format=esm --bundle --sourcemap --outfile=./dist/areaKeys.mjs",
"test": "run-s test:node",
"test:node": "node --test test/*.js"
},
"engines": {
"node": "^18.20 || >=20.10"
}
}