package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@turf/boolean-parallel",
  3. "version": "6.5.0",
  4. "description": "turf boolean-parallel module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Stefano Borghi <@stebogit>"
  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. "parallel",
  25. "boolean",
  26. "boolean-parallel"
  27. ],
  28. "main": "dist/js/index.js",
  29. "module": "dist/es/index.js",
  30. "exports": {
  31. "./package.json": "./package.json",
  32. ".": {
  33. "import": "./dist/es/index.js",
  34. "require": "./dist/js/index.js"
  35. }
  36. },
  37. "types": "dist/js/index.d.ts",
  38. "sideEffects": false,
  39. "files": [
  40. "dist"
  41. ],
  42. "scripts": {
  43. "bench": "ts-node bench.js",
  44. "build": "npm-run-all build:*",
  45. "build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json",
  46. "build:js": "tsc",
  47. "docs": "node ../../scripts/generate-readmes",
  48. "test": "npm-run-all test:*",
  49. "test:tape": "ts-node -r esm test.js"
  50. },
  51. "devDependencies": {
  52. "@types/tape": "*",
  53. "benchmark": "*",
  54. "load-json-file": "*",
  55. "npm-run-all": "*",
  56. "tape": "*",
  57. "ts-node": "*",
  58. "tslint": "*",
  59. "typescript": "*",
  60. "write-json-file": "*"
  61. },
  62. "dependencies": {
  63. "@turf/clean-coords": "^6.5.0",
  64. "@turf/helpers": "^6.5.0",
  65. "@turf/line-segment": "^6.5.0",
  66. "@turf/rhumb-bearing": "^6.5.0"
  67. },
  68. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  69. }