package.json 1.7 KB

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