package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@turf/truncate",
  3. "version": "6.5.0",
  4. "description": "turf truncate module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Denis Carriere <@DenisCarriere>"
  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. "geojson",
  25. "gis",
  26. "truncate"
  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. "test:types": "tsc --esModuleInterop --noEmit types.ts"
  51. },
  52. "devDependencies": {
  53. "@types/tape": "*",
  54. "benchmark": "*",
  55. "load-json-file": "*",
  56. "npm-run-all": "*",
  57. "tape": "*",
  58. "ts-node": "*",
  59. "tslint": "*",
  60. "typescript": "*",
  61. "write-json-file": "*"
  62. },
  63. "dependencies": {
  64. "@turf/helpers": "^6.5.0",
  65. "@turf/meta": "^6.5.0"
  66. },
  67. "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
  68. }