package.json 1.7 KB

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