package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "fill-range",
  3. "description": "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.",
  4. "version": "2.2.4",
  5. "homepage": "https://github.com/jonschlinkert/fill-range",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/fill-range",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/fill-range/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. "is-number": "^2.1.0",
  24. "isobject": "^2.0.0",
  25. "randomatic": "^3.0.0",
  26. "repeat-element": "^1.1.2",
  27. "repeat-string": "^1.5.2"
  28. },
  29. "devDependencies": {
  30. "benchmarked": "^0.1.3",
  31. "chalk": "^0.5.1",
  32. "gulp-format-md": "^1.0.0",
  33. "should": "^13.2.1"
  34. },
  35. "keywords": [
  36. "alpha",
  37. "alphabetical",
  38. "bash",
  39. "brace",
  40. "expand",
  41. "expansion",
  42. "fill",
  43. "glob",
  44. "match",
  45. "matches",
  46. "matching",
  47. "number",
  48. "numerical",
  49. "range",
  50. "ranges",
  51. "sh"
  52. ],
  53. "verb": {
  54. "toc": true,
  55. "layout": "default",
  56. "tasks": [
  57. "readme"
  58. ],
  59. "plugins": [
  60. "gulp-format-md"
  61. ],
  62. "related": {
  63. "list": [
  64. "braces",
  65. "expand-range",
  66. "is-glob",
  67. "micromatch"
  68. ]
  69. },
  70. "lint": {
  71. "reflinks": true
  72. },
  73. "reflinks": [
  74. "micromatch",
  75. "randomatic"
  76. ]
  77. }
  78. }