package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@turf/point-on-feature",
  3. "version": "6.5.0",
  4. "description": "turf point-on-feature module",
  5. "author": "Turf Authors",
  6. "license": "MIT",
  7. "bugs": {
  8. "url": "https://github.com/Turfjs/turf/issues"
  9. },
  10. "homepage": "https://github.com/Turfjs/turf",
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/Turfjs/turf.git"
  14. },
  15. "funding": "https://opencollective.com/turf",
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "keywords": [
  20. "turf",
  21. "centroid",
  22. "geojson",
  23. "point",
  24. "surface",
  25. "polygon"
  26. ],
  27. "main": "dist/js/index.js",
  28. "module": "dist/es/index.js",
  29. "exports": {
  30. "./package.json": "./package.json",
  31. ".": {
  32. "import": "./dist/es/index.js",
  33. "require": "./dist/js/index.js"
  34. }
  35. },
  36. "types": "index.d.ts",
  37. "sideEffects": false,
  38. "files": [
  39. "dist",
  40. "index.d.ts"
  41. ],
  42. "scripts": {
  43. "bench": "node -r esm bench.js",
  44. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  45. "docs": "node ../../scripts/generate-readmes",
  46. "test": "npm-run-all test:*",
  47. "test:tape": "node -r esm test.js"
  48. },
  49. "devDependencies": {
  50. "@turf/meta": "^6.5.0",
  51. "@turf/truncate": "^6.5.0",
  52. "benchmark": "*",
  53. "npm-run-all": "*",
  54. "rollup": "*",
  55. "tape": "*"
  56. },
  57. "dependencies": {
  58. "@turf/boolean-point-in-polygon": "^6.5.0",
  59. "@turf/center": "^6.5.0",
  60. "@turf/explode": "^6.5.0",
  61. "@turf/helpers": "^6.5.0",
  62. "@turf/nearest-point": "^6.5.0"
  63. },
  64. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  65. }