package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "to-regex",
  3. "description": "Generate a regex from a string or array of strings.",
  4. "version": "3.0.2",
  5. "homepage": "https://github.com/jonschlinkert/to-regex",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/to-regex",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/to-regex/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. "define-property": "^2.0.2",
  24. "extend-shallow": "^3.0.2",
  25. "regex-not": "^1.0.2",
  26. "safe-regex": "^1.1.0"
  27. },
  28. "devDependencies": {
  29. "gulp-format-md": "^1.0.0",
  30. "mocha": "^3.5.3"
  31. },
  32. "keywords": [
  33. "match",
  34. "regex",
  35. "regular expression",
  36. "test",
  37. "to"
  38. ],
  39. "verb": {
  40. "toc": {
  41. "method": "preWrite"
  42. },
  43. "layout": "default",
  44. "tasks": [
  45. "readme"
  46. ],
  47. "plugins": [
  48. "gulp-format-md"
  49. ],
  50. "related": {
  51. "list": [
  52. "has-glob",
  53. "is-glob",
  54. "path-regex",
  55. "to-regex-range"
  56. ]
  57. },
  58. "lint": {
  59. "reflinks": true
  60. }
  61. }
  62. }