package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "parse-glob",
  3. "description": "Parse a glob pattern into an object of tokens.",
  4. "version": "3.0.4",
  5. "homepage": "https://github.com/jonschlinkert/parse-glob",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/parse-glob",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/parse-glob/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. "prepublish": "browserify -o browser.js -e index.js"
  22. },
  23. "dependencies": {
  24. "glob-base": "^0.3.0",
  25. "is-dotfile": "^1.0.0",
  26. "is-extglob": "^1.0.0",
  27. "is-glob": "^2.0.0"
  28. },
  29. "devDependencies": {
  30. "browserify": "^9.0.3",
  31. "lodash": "^3.3.1",
  32. "mocha": "*"
  33. },
  34. "keywords": [
  35. "glob",
  36. "match",
  37. "bash",
  38. "expand",
  39. "expansion",
  40. "expression",
  41. "file",
  42. "files",
  43. "filter",
  44. "find",
  45. "glob",
  46. "globbing",
  47. "globs",
  48. "globstar",
  49. "match",
  50. "matcher",
  51. "matches",
  52. "matching",
  53. "path",
  54. "pattern",
  55. "patterns",
  56. "regex",
  57. "regexp",
  58. "regular",
  59. "shell",
  60. "wildcard"
  61. ]
  62. }