-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "geojson-minimum-bounding-rectangle",
"version": "2.0.2",
"description": "A library to compute the Minimum Bounding Rectangle of a GeoJSON polygon",
"main": "dist/index.js",
"exports": {
"import": "./dist/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"check-format": "prettier --check .",
"ci": "npm run build && npm run check-format && npm run test",
"test": "vitest run"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/matthiasfeist/geojson-minimum-bounding-rectangle.git"
},
"keywords": [
"geojson",
"minimum area reactangle",
"minimum bounding rectangle",
"smallest surrounding rectangle",
"minimum bounding box",
"turf",
"turfjs"
],
"bugs": {
"url": "https://github.com/matthiasfeist/geojson-minimum-bounding-rectangle/issues"
},
"homepage": "https://github.com/matthiasfeist/geojson-minimum-bounding-rectangle",
"author": "Matthias Feist <[email protected]>",
"license": "MIT",
"dependencies": {
"@turf/area": "^7.0.0",
"@turf/bearing": "^7.0.0",
"@turf/centroid": "^7.0.0",
"@turf/convex": "^7.0.0",
"@turf/distance": "^7.0.0",
"@turf/envelope": "^7.0.0",
"@turf/helpers": "^7.0.0",
"@turf/meta": "^7.0.0",
"@turf/transform-rotate": "^7.0.0"
},
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/node": "^20.14.10",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=18"
}
}