package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "make-iterator",
  3. "description": "Convert an argument into a valid iterator. Based on the `.makeIterator()` implementation in mout https://github.com/mout/mout.",
  4. "version": "1.0.1",
  5. "homepage": "https://github.com/jonschlinkert/make-iterator",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/make-iterator",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/make-iterator/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "kind-of": "^6.0.2"
  24. },
  25. "devDependencies": {
  26. "gulp-format-md": "^1.0.0",
  27. "mocha": "^3.5.3"
  28. },
  29. "keywords": [
  30. "arr",
  31. "array",
  32. "contains",
  33. "for-own",
  34. "forown",
  35. "forOwn",
  36. "function",
  37. "iterate",
  38. "iterator",
  39. "make"
  40. ],
  41. "verb": {
  42. "related": {
  43. "list": [
  44. "any",
  45. "arr-filter",
  46. "arr-map",
  47. "array-every",
  48. "collection-map",
  49. "utils"
  50. ]
  51. },
  52. "toc": false,
  53. "layout": "default",
  54. "tasks": [
  55. "readme"
  56. ],
  57. "plugins": [
  58. "gulp-format-md"
  59. ],
  60. "lint": {
  61. "reflinks": true
  62. },
  63. "reflinks": [
  64. "verb",
  65. "verb-readme-generator"
  66. ]
  67. }
  68. }