package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@turf/collect",
  3. "version": "6.5.0",
  4. "description": "turf collect 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. "aggregate",
  24. "turf",
  25. "geojson",
  26. "points",
  27. "polygons",
  28. "stats"
  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": "dist/js/index.d.ts",
  40. "sideEffects": false,
  41. "files": [
  42. "dist"
  43. ],
  44. "scripts": {
  45. "bench": "ts-node bench.js",
  46. "build": "npm-run-all build:*",
  47. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  48. "build:js": "tsc",
  49. "docs": "node ../../scripts/generate-readmes",
  50. "test": "npm-run-all test:*",
  51. "test:tape": "ts-node -r esm test.js"
  52. },
  53. "devDependencies": {
  54. "@types/rbush": "^2.0.3",
  55. "@types/tape": "*",
  56. "benchmark": "*",
  57. "npm-run-all": "*",
  58. "tape": "*",
  59. "ts-node": "*",
  60. "tslint": "*",
  61. "typescript": "*"
  62. },
  63. "dependencies": {
  64. "@turf/bbox": "^6.5.0",
  65. "@turf/boolean-point-in-polygon": "^6.5.0",
  66. "@turf/helpers": "^6.5.0",
  67. "rbush": "2.x"
  68. },
  69. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  70. }