forked from Turfjs/turf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.28 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": "@turf/point-on-feature",
"version": "5.1.5",
"description": "turf point-on-feature module",
"main": "main.js",
"module": "main.es.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"main.js",
"main.es.js"
],
"scripts": {
"pretest": "rollup -c ../../rollup.config.js",
"test": "node -r @std/esm test.js",
"posttest": "node -r @std/esm ../../scripts/validate-es5-dependencies.js",
"bench": "node -r @std/esm bench.js",
"docs": "node ../../scripts/generate-readmes"
},
"repository": {
"type": "git",
"url": "git://github.com/Turfjs/turf.git"
},
"keywords": [
"turf",
"centroid",
"geojson",
"point",
"surface",
"polygon"
],
"author": "Turf Authors",
"license": "MIT",
"bugs": {
"url": "https://github.com/Turfjs/turf/issues"
},
"homepage": "https://github.com/Turfjs/turf",
"devDependencies": {
"@std/esm": "*",
"@turf/meta": "6.x",
"@turf/truncate": "6.x",
"benchmark": "*",
"rollup": "*",
"tape": "*"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "6.x",
"@turf/center": "6.x",
"@turf/explode": "^5.1.5",
"@turf/helpers": "6.x",
"@turf/nearest-point": "^5.1.5"
},
"@std/esm": {
"esm": "js",
"cjs": true
}
}