| 1234567891011121314151617181920212223242526272829303132 | {  "name": "point-in-polygon",  "description": "determine if a point is inside a polygon with a ray intersection counting algorithm",  "version": "1.1.0",  "repository": {    "type": "git",    "url": "git://github.com/substack/point-in-polygon.git"  },  "main": "index.js",  "keywords": [    "point",    "polygon",    "inside"  ],  "directories": {    "lib": ".",    "example": "example",    "test": "test"  },  "scripts": {    "test": "tape test/*.js"  },  "devDependencies": {    "tape": "^4.0.0"  },  "license": "MIT",  "author": {    "name": "James Halliday",    "email": "mail@substack.net",    "url": "http://substack.net"  }}
 |