package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@turf/boolean-clockwise",
  3. "version": "6.5.0",
  4. "description": "turf boolean-clockwise module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Morgan Herlocker <@morganherlocker>",
  8. "Rowan Winsemius <@rowanwins>",
  9. "Denis Carriere <@DenisCarriere>",
  10. "Stefano Borghi <@stebogit>"
  11. ],
  12. "license": "MIT",
  13. "bugs": {
  14. "url": "https://github.com/Turfjs/turf/issues"
  15. },
  16. "homepage": "https://github.com/Turfjs/turf",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/Turfjs/turf.git"
  20. },
  21. "funding": "https://opencollective.com/turf",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "keywords": [
  26. "turf",
  27. "clockwise",
  28. "boolean"
  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/tape": "*",
  55. "benchmark": "*",
  56. "glob": "*",
  57. "load-json-file": "*",
  58. "npm-run-all": "*",
  59. "tape": "*",
  60. "ts-node": "*",
  61. "tslint": "*",
  62. "typescript": "*"
  63. },
  64. "dependencies": {
  65. "@turf/helpers": "^6.5.0",
  66. "@turf/invariant": "^6.5.0"
  67. },
  68. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  69. }