-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.35 KB
/
package.json
File metadata and controls
75 lines (75 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
{
"name": "geo-extent",
"version": "1.5.0",
"description": "Simple, Modern Geospatial Bounding Boxes",
"main": "./dist/geo-extent.cjs",
"module": "dist/geo-extent.mjs",
"unpkg": "dist/geo-extent.bundle.js",
"jsdelivr": "dist/geo-extent.bundle.js",
"type": "module",
"types": "./types.d.ts",
"files": [
"types.d.ts",
"src/geo-extent.js",
"dist/geo-extent.cjs",
"dist/geo-extent.mjs",
"dist/geo-extent.bundle.js"
],
"scripts": {
"build": "npm run build:mjs && npm run build:cjs && npm run build:bundle",
"build:bundle": "esbuild ./src/geo-extent.js --bundle --outfile=./dist/geo-extent.bundle.js --platform=browser",
"build:mjs": "cp ./src/geo-extent.js ./dist/geo-extent.mjs",
"build:cjs": "esbuild ./src/geo-extent.js --bundle --outfile=./dist/geo-extent.cjs --platform=node",
"f": "npm run format",
"format": "npx prettier --arrow-parens=avoid --print-width=120 --trailing-comma=none --write *.ts src/*.js test/*.js test/*.mjs",
"prepublishOnly": "npm run format && npm run build && npm run test",
"test": "npm run test:js && npm run test:dist",
"test:js": "for f in ./test/*; do echo \"node $f\" && node $f && echo \"npx ts-node $f\" && npx ts-node $f; done",
"test:dist": "node ./dist/geo-extent.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielJDufour/geo-extent.git"
},
"keywords": [
"bbox",
"bounding",
"epsg",
"extent",
"geo",
"geospatial",
"gis",
"leaflet",
"maps",
"projection",
"proj4",
"proj4js",
"reprojection"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/DanielJDufour/geo-extent/issues"
},
"homepage": "https://github.com/DanielJDufour/geo-extent#readme",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/helper-compilation-targets": "^7.23.6",
"@babel/helper-validator-option": "^7.23.5",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"esbuild": "^0.19.11",
"flug": "^2.7.2",
"global-jsdom": "^9.2.0",
"jsdom": "^23.2.0",
"leaflet": "^1.9.4"
},
"dependencies": {
"bbox-fns": "^0.20.2",
"geography-markup-language": "^0.2.0",
"get-epsg-code": "1.2.0",
"preciso": "^0.12.2",
"reproject-bbox": "^0.13.1",
"reproject-geojson": "^0.5.0"
}
}