@turf/line-arc 7.0.0-alpha.0 → 7.0.0-alpha.2
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 +11 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turf/line-arc",
|
|
3
|
-
"version": "7.0.0-alpha.
|
|
3
|
+
"version": "7.0.0-alpha.2",
|
|
4
4
|
"description": "turf line-arc module",
|
|
5
5
|
"author": "Turf Authors",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"exports": {
|
|
26
26
|
"./package.json": "./package.json",
|
|
27
27
|
".": {
|
|
28
|
+
"types": "./dist/js/index.d.ts",
|
|
28
29
|
"import": "./dist/es/index.js",
|
|
29
30
|
"require": "./dist/js/index.js"
|
|
30
31
|
}
|
|
@@ -35,30 +36,30 @@
|
|
|
35
36
|
"dist"
|
|
36
37
|
],
|
|
37
38
|
"scripts": {
|
|
38
|
-
"bench": "
|
|
39
|
+
"bench": "tsx bench.js",
|
|
39
40
|
"build": "npm-run-all build:*",
|
|
40
41
|
"build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
|
|
41
42
|
"build:js": "tsc",
|
|
42
|
-
"docs": "
|
|
43
|
+
"docs": "tsx ../../scripts/generate-readmes",
|
|
43
44
|
"test": "npm-run-all test:*",
|
|
44
|
-
"test:tape": "
|
|
45
|
+
"test:tape": "tsx test.js",
|
|
45
46
|
"test:types": "tsc --esModuleInterop --noEmit --strict types.ts"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
48
|
-
"@turf/truncate": "^7.0.0-alpha.
|
|
49
|
+
"@turf/truncate": "^7.0.0-alpha.2",
|
|
49
50
|
"benchmark": "*",
|
|
50
51
|
"load-json-file": "*",
|
|
51
52
|
"npm-run-all": "*",
|
|
52
53
|
"tape": "*",
|
|
53
|
-
"
|
|
54
|
+
"tsx": "*",
|
|
54
55
|
"typescript": "*",
|
|
55
56
|
"write-json-file": "*"
|
|
56
57
|
},
|
|
57
58
|
"dependencies": {
|
|
58
|
-
"@turf/circle": "^7.0.0-alpha.
|
|
59
|
-
"@turf/destination": "^7.0.0-alpha.
|
|
60
|
-
"@turf/helpers": "^7.0.0-alpha.
|
|
59
|
+
"@turf/circle": "^7.0.0-alpha.2",
|
|
60
|
+
"@turf/destination": "^7.0.0-alpha.2",
|
|
61
|
+
"@turf/helpers": "^7.0.0-alpha.2",
|
|
61
62
|
"tslib": "^2.3.0"
|
|
62
63
|
},
|
|
63
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "dd35b52725945b4fa29a98d9a550733e06cc222e"
|
|
64
65
|
}
|