| 1234567891011121314151617181920212223242526272829303132333435363738 | {  "name": "concaveman",  "version": "1.2.1",  "description": "Fast 2D concave hull algorithm in JavaScript (generates an outline of a point set)",  "main": "index.js",  "dependencies": {    "point-in-polygon": "^1.1.0",    "rbush": "^3.0.1",    "robust-predicates": "^2.0.4",    "tinyqueue": "^2.0.3"  },  "devDependencies": {    "eslint": "^7.32.0",    "eslint-config-mourner": "^2.0.1",    "tape": "^5.3.1"  },  "scripts": {    "pretest": "eslint index.js test/*.js",    "test": "tape test/test.js"  },  "repository": {    "type": "git",    "url": "git://github.com/mapbox/concaveman.git"  },  "keywords": [    "concave",    "hull",    "algorithm",    "geometry",    "shape",    "outline"  ],  "eslintConfig": {    "extends": "mourner"  },  "author": "Vladimir Agafonkin",  "license": "ISC"}
 |