package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@turf/sample",
  3. "version": "6.5.0",
  4. "description": "turf sample 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. "geojson",
  21. "stats",
  22. "sample",
  23. "turf"
  24. ],
  25. "main": "dist/js/index.js",
  26. "module": "dist/es/index.js",
  27. "exports": {
  28. "./package.json": "./package.json",
  29. ".": {
  30. "import": "./dist/es/index.js",
  31. "require": "./dist/js/index.js"
  32. }
  33. },
  34. "types": "index.d.ts",
  35. "sideEffects": false,
  36. "files": [
  37. "dist",
  38. "index.d.ts"
  39. ],
  40. "scripts": {
  41. "bench": "node -r esm bench.js",
  42. "build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
  43. "docs": "node ../../scripts/generate-readmes",
  44. "test": "npm-run-all test:*",
  45. "test:tape": "node -r esm test.js"
  46. },
  47. "devDependencies": {
  48. "benchmark": "*",
  49. "npm-run-all": "*",
  50. "rollup": "*",
  51. "tape": "*"
  52. },
  53. "dependencies": {
  54. "@turf/helpers": "^6.5.0"
  55. },
  56. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  57. }