package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@turf/boolean-equal",
  3. "version": "6.5.0",
  4. "description": "turf boolean-equal module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Tom MacWright <@tmcw>",
  8. "Tim Channell <@tcql>",
  9. "Stefano Borghi <@stebogit>"
  10. ],
  11. "license": "MIT",
  12. "bugs": {
  13. "url": "https://github.com/Turfjs/turf/issues"
  14. },
  15. "homepage": "https://github.com/Turfjs/turf",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/Turfjs/turf.git"
  19. },
  20. "funding": "https://opencollective.com/turf",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "keywords": [
  25. "turf",
  26. "gis",
  27. "boolean",
  28. "de-9im",
  29. "equal",
  30. "boolean-equal"
  31. ],
  32. "main": "dist/js/index.js",
  33. "module": "dist/es/index.js",
  34. "exports": {
  35. "./package.json": "./package.json",
  36. ".": {
  37. "import": "./dist/es/index.js",
  38. "require": "./dist/js/index.js"
  39. }
  40. },
  41. "types": "dist/js/index.d.ts",
  42. "sideEffects": false,
  43. "files": [
  44. "dist"
  45. ],
  46. "scripts": {
  47. "bench": "ts-node bench.js",
  48. "build": "npm-run-all build:*",
  49. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  50. "build:js": "tsc",
  51. "docs": "node ../../scripts/generate-readmes",
  52. "test": "npm-run-all test:*",
  53. "test:tape": "ts-node -r esm test.js"
  54. },
  55. "devDependencies": {
  56. "@types/geojson-equality": "^0.2.0",
  57. "@types/tape": "*",
  58. "benchmark": "*",
  59. "boolean-shapely": "*",
  60. "glob": "*",
  61. "load-json-file": "*",
  62. "npm-run-all": "*",
  63. "tape": "*",
  64. "ts-node": "*",
  65. "tslint": "*",
  66. "typescript": "*"
  67. },
  68. "dependencies": {
  69. "@turf/clean-coords": "^6.5.0",
  70. "@turf/helpers": "^6.5.0",
  71. "@turf/invariant": "^6.5.0",
  72. "geojson-equality": "0.1.6"
  73. },
  74. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  75. }