@turf/clusters-kmeans 7.3.0 → 7.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +10 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turf/clusters-kmeans",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.1",
|
|
4
4
|
"description": "Takes a set of points and partition them into clusters using the k-means algorithm.",
|
|
5
5
|
"author": "Turf Authors",
|
|
6
6
|
"contributors": [
|
|
@@ -54,14 +54,14 @@
|
|
|
54
54
|
"bench": "tsx bench.ts",
|
|
55
55
|
"build": "tsup --config ../../tsup.config.ts",
|
|
56
56
|
"docs": "tsx ../../scripts/generate-readmes.ts",
|
|
57
|
-
"test": "
|
|
57
|
+
"test": "pnpm run /test:.*/",
|
|
58
58
|
"test:tape": "tsx test.ts",
|
|
59
59
|
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@turf/centroid": "7.3.
|
|
63
|
-
"@turf/clusters": "7.3.
|
|
64
|
-
"@turf/random": "7.3.
|
|
62
|
+
"@turf/centroid": "7.3.1",
|
|
63
|
+
"@turf/clusters": "7.3.1",
|
|
64
|
+
"@turf/random": "7.3.1",
|
|
65
65
|
"@types/benchmark": "^2.1.5",
|
|
66
66
|
"@types/skmeans": "^0.11.7",
|
|
67
67
|
"@types/tape": "^5.8.1",
|
|
@@ -69,7 +69,6 @@
|
|
|
69
69
|
"chromatism": "^3.0.0",
|
|
70
70
|
"concaveman": "^1.2.1",
|
|
71
71
|
"load-json-file": "^7.0.1",
|
|
72
|
-
"npm-run-all": "^4.1.5",
|
|
73
72
|
"tape": "^5.9.0",
|
|
74
73
|
"tsup": "^8.4.0",
|
|
75
74
|
"tsx": "^4.19.4",
|
|
@@ -77,13 +76,13 @@
|
|
|
77
76
|
"write-json-file": "^6.0.0"
|
|
78
77
|
},
|
|
79
78
|
"dependencies": {
|
|
80
|
-
"@turf/clone": "7.3.
|
|
81
|
-
"@turf/helpers": "7.3.
|
|
82
|
-
"@turf/invariant": "7.3.
|
|
83
|
-
"@turf/meta": "7.3.
|
|
79
|
+
"@turf/clone": "7.3.1",
|
|
80
|
+
"@turf/helpers": "7.3.1",
|
|
81
|
+
"@turf/invariant": "7.3.1",
|
|
82
|
+
"@turf/meta": "7.3.1",
|
|
84
83
|
"@types/geojson": "^7946.0.10",
|
|
85
84
|
"skmeans": "0.9.7",
|
|
86
85
|
"tslib": "^2.8.1"
|
|
87
86
|
},
|
|
88
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "b7f1b4eafb760431e03955499d8eac9489438219"
|
|
89
88
|
}
|