Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

package.json 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "to-regex-range",
  3. "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.",
  4. "version": "5.0.1",
  5. "homepage": "https://github.com/micromatch/to-regex-range",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  9. "Rouven Weßling (www.rouvenwessling.de)"
  10. ],
  11. "repository": "micromatch/to-regex-range",
  12. "bugs": {
  13. "url": "https://github.com/micromatch/to-regex-range/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=8.0"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "dependencies": {
  27. "is-number": "^7.0.0"
  28. },
  29. "devDependencies": {
  30. "fill-range": "^6.0.0",
  31. "gulp-format-md": "^2.0.0",
  32. "mocha": "^6.0.2",
  33. "text-table": "^0.2.0",
  34. "time-diff": "^0.3.1"
  35. },
  36. "keywords": [
  37. "bash",
  38. "date",
  39. "expand",
  40. "expansion",
  41. "expression",
  42. "glob",
  43. "match",
  44. "match date",
  45. "match number",
  46. "match numbers",
  47. "match year",
  48. "matches",
  49. "matching",
  50. "number",
  51. "numbers",
  52. "numerical",
  53. "range",
  54. "ranges",
  55. "regex",
  56. "regexp",
  57. "regular",
  58. "regular expression",
  59. "sequence"
  60. ],
  61. "verb": {
  62. "layout": "default",
  63. "toc": false,
  64. "tasks": [
  65. "readme"
  66. ],
  67. "plugins": [
  68. "gulp-format-md"
  69. ],
  70. "lint": {
  71. "reflinks": true
  72. },
  73. "helpers": {
  74. "examples": {
  75. "displayName": "examples"
  76. }
  77. },
  78. "related": {
  79. "list": [
  80. "expand-range",
  81. "fill-range",
  82. "micromatch",
  83. "repeat-element",
  84. "repeat-string"
  85. ]
  86. }
  87. }
  88. }