package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "expand-range",
  3. "description": "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.",
  4. "version": "1.8.2",
  5. "homepage": "https://github.com/jonschlinkert/expand-range",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/expand-range",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/expand-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. "fill-range": "^2.1.0"
  24. },
  25. "devDependencies": {
  26. "benchmarked": "^0.2.4",
  27. "brace-expansion": "^1.1.4",
  28. "glob": "^7.0.3",
  29. "gulp-format-md": "^0.1.9",
  30. "minimatch": "^3.0.0",
  31. "mocha": "^2.4.5"
  32. },
  33. "keywords": [
  34. "alpha",
  35. "alphabetical",
  36. "bash",
  37. "brace",
  38. "expand",
  39. "expansion",
  40. "glob",
  41. "match",
  42. "matches",
  43. "matching",
  44. "number",
  45. "numerical",
  46. "range",
  47. "ranges",
  48. "sh"
  49. ],
  50. "verb": {
  51. "plugins": [
  52. "gulp-format-md"
  53. ],
  54. "reflinks": [
  55. "verb"
  56. ],
  57. "toc": false,
  58. "layout": "default",
  59. "lint": {
  60. "reflinks": true
  61. },
  62. "tasks": [
  63. "readme"
  64. ],
  65. "related": {
  66. "list": [
  67. "micromatch",
  68. "fill-range",
  69. "braces"
  70. ]
  71. }
  72. }
  73. }