package.json 988 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "globule",
  3. "description": "An easy-to-use wildcard globbing library.",
  4. "version": "1.3.3",
  5. "homepage": "https://github.com/cowboy/node-globule",
  6. "author": {
  7. "name": "\"Cowboy\" Ben Alman",
  8. "url": "http://benalman.com/"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/cowboy/node-globule.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/cowboy/node-globule/issues"
  16. },
  17. "license": "MIT",
  18. "main": "lib/globule",
  19. "files": [
  20. "lib"
  21. ],
  22. "engines": {
  23. "node": ">= 0.10"
  24. },
  25. "scripts": {
  26. "test": "grunt"
  27. },
  28. "devDependencies": {
  29. "grunt-contrib-jshint": "^1.0.0",
  30. "grunt-contrib-nodeunit": "^2.0.0",
  31. "grunt-contrib-watch": "^1.1.0",
  32. "grunt": "^1.0.2"
  33. },
  34. "keywords": [
  35. "glob",
  36. "file",
  37. "match",
  38. "mapping",
  39. "expand",
  40. "wildcard",
  41. "pattern",
  42. "sync",
  43. "awesome"
  44. ],
  45. "dependencies": {
  46. "glob": "~7.1.1",
  47. "lodash": "~4.17.10",
  48. "minimatch": "~3.0.2"
  49. }
  50. }