| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | {  "name": "is-odd",  "description": "Returns true if the given number is odd.",  "version": "2.0.0",  "homepage": "https://github.com/jonschlinkert/is-odd",  "author": "Jon Schlinkert (https://github.com/jonschlinkert)",  "contributors": [    "Dmitry Semigradsky (http://brainstorage.me/semigradsky)",    "DYM (https://dym.sh)",    "Jon Schlinkert (http://twitter.com/jonschlinkert)",    "Rouven Weßling (www.rouvenwessling.de)"  ],  "repository": "jonschlinkert/is-odd",  "bugs": {    "url": "https://github.com/jonschlinkert/is-odd/issues"  },  "license": "MIT",  "files": [    "index.js"  ],  "main": "index.js",  "engines": {    "node": ">=0.10.0"  },  "scripts": {    "test": "mocha"  },  "dependencies": {    "is-number": "^4.0.0"  },  "devDependencies": {    "gulp-format-md": "^1.0.0",    "mocha": "^4.0.1"  },  "keywords": [    "array",    "count",    "even",    "filter",    "integer",    "is",    "math",    "numeric",    "odd",    "string"  ],  "verb": {    "toc": false,    "layout": "default",    "tasks": [      "readme"    ],    "plugins": [      "gulp-format-md"    ],    "related": {      "list": [        "exponential-moving-average",        "is-even",        "sma"      ]    },    "lint": {      "reflinks": true    }  }}
 |