Нема описа

package.json 1.2KB

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