forked from osmlab/osm-community-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.67 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": "osm-community-index",
"version": "5.6.3",
"license": "ISC",
"description": "An index of community resources for OpenStreetMap",
"homepage": "https://openstreetmap.community",
"repository": "github:osmlab/osm-community-index",
"contributors": [
"Andrew Wiseman (https://github.com/aawiseman)",
"Bryan Housel <[email protected]> (https://github.com/bhousel)",
"Kai Michael Poppe (https://github.com/kmpoppe)",
"nikh050 (https://github.com/nikh050)"
],
"keywords": [
"OSM",
"OpenStreetMap",
"community"
],
"files": [
"index.mjs",
"dist/",
"features/",
"i18n/",
"lib/",
"resources/",
"schema/"
],
"type": "module",
"main": "./dist/javascript/oci.cjs",
"module": "./index.mjs",
"exports": {
"import": "./index.mjs",
"require": "./dist/javascript/oci.cjs",
"*": "./*"
},
"scripts": {
"all": "run-s test dist",
"build": "run-s build:**",
"build:index": "node scripts/build_index.js",
"dist": "run-p dist:**",
"dist:browser": "esbuild index.mjs --platform=browser --format=iife --global-name=oci --bundle --sourcemap --outfile=./dist/javascript/oci.iife.js",
"dist:cjs": "esbuild index.mjs --platform=node --format=cjs --bundle --sourcemap --external:diacritics --outfile=./dist/javascript/oci.cjs",
"dist:files": "node scripts/dist_files.js",
"icons": "node scripts/build_icons.js",
"lint": "eslint scripts/*.js lib/*.js tests/*.js",
"test": "run-s build test:node",
"test:node": "c8 node --test tests/*.js",
"stats": "node scripts/stats.js",
"txpull": "tx pull -a",
"txpush": "tx push -s",
"local": "run-s build dist && node scripts/build_local.js && http-server docs-local"
},
"dependencies": {
"diacritics": "^1.3.0"
},
"devDependencies": {
"@aitodotai/json-stringify-pretty-compact": "^1.3.0",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@mapbox/geojson-area": "^0.2.2",
"@mapbox/geojson-rewind": "^0.5.2",
"@rapideditor/location-conflation": "~1.3.0",
"bytes": "^3.1.2",
"c8": "^9.1.0",
"chalk": "^5.3.0",
"easy-table": "^1.2.0",
"esbuild": "^0.20.2",
"eslint": "^9.1.1",
"fs-extra": "^11.2.0",
"geojson-bounds": "^1.0.4",
"geojson-precision": "^1.0.0",
"glob": "^10.3.12",
"globals": "^15.0.0",
"http-server": "^14.1.1",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"jsonschema": "^1.4.1",
"locale-compare": "^2.0.0",
"npm-run-all": "^4.1.5",
"shelljs": "^0.8.5"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}