package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "is-odd",
  3. "description": "Returns true if the given number is odd.",
  4. "version": "2.0.0",
  5. "homepage": "https://github.com/jonschlinkert/is-odd",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Dmitry Semigradsky (http://brainstorage.me/semigradsky)",
  9. "DYM (https://dym.sh)",
  10. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  11. "Rouven Weßling (www.rouvenwessling.de)"
  12. ],
  13. "repository": "jonschlinkert/is-odd",
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/is-odd/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "is-number": "^4.0.0"
  30. },
  31. "devDependencies": {
  32. "gulp-format-md": "^1.0.0",
  33. "mocha": "^4.0.1"
  34. },
  35. "keywords": [
  36. "array",
  37. "count",
  38. "even",
  39. "filter",
  40. "integer",
  41. "is",
  42. "math",
  43. "numeric",
  44. "odd",
  45. "string"
  46. ],
  47. "verb": {
  48. "toc": false,
  49. "layout": "default",
  50. "tasks": [
  51. "readme"
  52. ],
  53. "plugins": [
  54. "gulp-format-md"
  55. ],
  56. "related": {
  57. "list": [
  58. "exponential-moving-average",
  59. "is-even",
  60. "sma"
  61. ]
  62. },
  63. "lint": {
  64. "reflinks": true
  65. }
  66. }
  67. }