package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@turf/polygon-smooth",
  3. "version": "6.5.0",
  4. "description": "turf polygon smooth module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Rowan Winsemius <@rowanwins>"
  8. ],
  9. "license": "MIT",
  10. "bugs": {
  11. "url": "https://github.com/Turfjs/turf/issues"
  12. },
  13. "homepage": "https://github.com/Turfjs/turf",
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/Turfjs/turf.git"
  17. },
  18. "funding": "https://opencollective.com/turf",
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "keywords": [
  23. "turf",
  24. "geojson",
  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. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  49. },
  50. "devDependencies": {
  51. "benchmark": "*",
  52. "glob": "*",
  53. "load-json-file": "*",
  54. "npm-run-all": "*",
  55. "rollup": "*",
  56. "tape": "*",
  57. "write-json-file": "*"
  58. },
  59. "dependencies": {
  60. "@turf/helpers": "^6.5.0",
  61. "@turf/meta": "^6.5.0"
  62. },
  63. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  64. }