package.json 1.6 KB

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