Ei kuvausta

package.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "globule",
  3. "description": "An easy-to-use wildcard globbing library.",
  4. "version": "0.1.0",
  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. "licenses": [
  18. {
  19. "type": "MIT",
  20. "url": "https://github.com/cowboy/node-globule/blob/master/LICENSE-MIT"
  21. }
  22. ],
  23. "main": "lib/globule",
  24. "engines": {
  25. "node": ">= 0.8.0"
  26. },
  27. "scripts": {
  28. "test": "grunt nodeunit"
  29. },
  30. "devDependencies": {
  31. "grunt-contrib-jshint": "~0.1.1",
  32. "grunt-contrib-nodeunit": "~0.1.2",
  33. "grunt-contrib-watch": "~0.2.0",
  34. "grunt": "~0.4.1"
  35. },
  36. "keywords": [
  37. "glob",
  38. "file",
  39. "match",
  40. "mapping",
  41. "expand",
  42. "wildcard",
  43. "pattern",
  44. "sync",
  45. "awesome"
  46. ],
  47. "dependencies": {
  48. "lodash": "~1.0.1",
  49. "glob": "~3.1.21",
  50. "minimatch": "~0.2.11"
  51. }
  52. }