package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "regex-cache",
  3. "description": "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.",
  4. "version": "0.4.4",
  5. "homepage": "https://github.com/jonschlinkert/regex-cache",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  9. "Martin Kolárik (https://kolarik.sk)"
  10. ],
  11. "repository": "jonschlinkert/regex-cache",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/regex-cache/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "scripts": {
  24. "test": "mocha",
  25. "benchmarks": "node benchmark"
  26. },
  27. "dependencies": {
  28. "is-equal-shallow": "^0.1.3"
  29. },
  30. "devDependencies": {
  31. "ansi-bold": "^0.1.1",
  32. "benchmarked": "^0.1.5",
  33. "gulp-format-md": "^0.1.7",
  34. "micromatch": "^2.3.7",
  35. "should": "^8.3.0"
  36. },
  37. "keywords": [
  38. "cache",
  39. "expression",
  40. "regex",
  41. "regexp",
  42. "regular",
  43. "regular expression",
  44. "store",
  45. "to-regex"
  46. ],
  47. "verb": {
  48. "run": true,
  49. "toc": false,
  50. "layout": "default",
  51. "tasks": [
  52. "readme"
  53. ],
  54. "plugins": [
  55. "gulp-format-md"
  56. ],
  57. "reflinks": [
  58. "verb"
  59. ],
  60. "lint": {
  61. "reflinks": true
  62. }
  63. }
  64. }