package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@turf/rectangle-grid",
  3. "version": "6.5.0",
  4. "description": "turf rectangle-grid module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Steve Bennett <@stevage>",
  8. "Adam Michaleski <@adam3039>"
  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. "grid",
  26. "regular",
  27. "cartesian"
  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": "dist/js/index.d.ts",
  39. "sideEffects": false,
  40. "files": [
  41. "dist"
  42. ],
  43. "scripts": {
  44. "bench": "ts-node bench.js",
  45. "build": "npm-run-all build:*",
  46. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  47. "build:js": "tsc",
  48. "docs": "node ../../scripts/generate-readmes",
  49. "test": "npm-run-all test:*",
  50. "test:tape": "ts-node -r esm test.js"
  51. },
  52. "devDependencies": {
  53. "@turf/bbox-polygon": "^6.5.0",
  54. "@turf/truncate": "^6.5.0",
  55. "benchmark": "*",
  56. "load-json-file": "*",
  57. "npm-run-all": "*",
  58. "rollup": "*",
  59. "tape": "*",
  60. "ts-node": "*",
  61. "typescript": "*",
  62. "write-json-file": "*"
  63. },
  64. "dependencies": {
  65. "@turf/boolean-intersects": "^6.5.0",
  66. "@turf/distance": "^6.5.0",
  67. "@turf/helpers": "^6.5.0"
  68. },
  69. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  70. }