package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@turf/transform-rotate",
  3. "version": "6.5.0",
  4. "description": "turf transform-rotate module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Stefano Borghi <@stebogit>",
  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. "transform",
  26. "transformation",
  27. "rotate"
  28. ],
  29. "main": "dist/js/index.js",
  30. "module": "dist/es/index.js",
  31. "exports": {
  32. "./package.json": "./package.json",
  33. ".": {
  34. "import": "./dist/es/index.js",
  35. "require": "./dist/js/index.js"
  36. }
  37. },
  38. "types": "index.d.ts",
  39. "sideEffects": false,
  40. "files": [
  41. "dist",
  42. "index.d.ts"
  43. ],
  44. "scripts": {
  45. "bench": "node -r esm bench.js",
  46. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  47. "docs": "node ../../scripts/generate-readmes",
  48. "test": "npm-run-all test:*",
  49. "test:tape": "node -r esm test.js",
  50. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  51. },
  52. "devDependencies": {
  53. "@turf/truncate": "^6.5.0",
  54. "benchmark": "*",
  55. "load-json-file": "*",
  56. "npm-run-all": "*",
  57. "rollup": "*",
  58. "tape": "*",
  59. "write-json-file": "*"
  60. },
  61. "dependencies": {
  62. "@turf/centroid": "^6.5.0",
  63. "@turf/clone": "^6.5.0",
  64. "@turf/helpers": "^6.5.0",
  65. "@turf/invariant": "^6.5.0",
  66. "@turf/meta": "^6.5.0",
  67. "@turf/rhumb-bearing": "^6.5.0",
  68. "@turf/rhumb-destination": "^6.5.0",
  69. "@turf/rhumb-distance": "^6.5.0"
  70. },
  71. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  72. }