package.json 832 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "concaveman",
  3. "version": "1.2.1",
  4. "description": "Fast 2D concave hull algorithm in JavaScript (generates an outline of a point set)",
  5. "main": "index.js",
  6. "dependencies": {
  7. "point-in-polygon": "^1.1.0",
  8. "rbush": "^3.0.1",
  9. "robust-predicates": "^2.0.4",
  10. "tinyqueue": "^2.0.3"
  11. },
  12. "devDependencies": {
  13. "eslint": "^7.32.0",
  14. "eslint-config-mourner": "^2.0.1",
  15. "tape": "^5.3.1"
  16. },
  17. "scripts": {
  18. "pretest": "eslint index.js test/*.js",
  19. "test": "tape test/test.js"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/mapbox/concaveman.git"
  24. },
  25. "keywords": [
  26. "concave",
  27. "hull",
  28. "algorithm",
  29. "geometry",
  30. "shape",
  31. "outline"
  32. ],
  33. "eslintConfig": {
  34. "extends": "mourner"
  35. },
  36. "author": "Vladimir Agafonkin",
  37. "license": "ISC"
  38. }