package.json 731 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "matcher",
  3. "version": "1.1.1",
  4. "description": "Simple wildcard matching",
  5. "license": "MIT",
  6. "repository": "sindresorhus/matcher",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava",
  17. "bench": "matcha bench.js"
  18. },
  19. "files": [
  20. "index.js"
  21. ],
  22. "keywords": [
  23. "matcher",
  24. "matching",
  25. "match",
  26. "regex",
  27. "regexp",
  28. "regular",
  29. "expression",
  30. "wildcard",
  31. "pattern",
  32. "string",
  33. "filter",
  34. "glob",
  35. "globber",
  36. "globbing",
  37. "minimatch"
  38. ],
  39. "dependencies": {
  40. "escape-string-regexp": "^1.0.4"
  41. },
  42. "devDependencies": {
  43. "ava": "*",
  44. "matcha": "^0.7.0",
  45. "xo": "*"
  46. }
  47. }