Нет описания

package.json 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "gaze",
  3. "description": "A globbing fs.watch wrapper built from the best parts of other fine watch libs.",
  4. "version": "0.5.2",
  5. "homepage": "https://github.com/shama/gaze",
  6. "author": {
  7. "name": "Kyle Robinson Young",
  8. "email": "kyle@dontkry.com"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/shama/gaze.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/shama/gaze/issues"
  16. },
  17. "licenses": [
  18. {
  19. "type": "MIT",
  20. "url": "https://github.com/shama/gaze/blob/master/LICENSE-MIT"
  21. }
  22. ],
  23. "main": "lib/gaze",
  24. "engines": {
  25. "node": ">= 0.8.0"
  26. },
  27. "scripts": {
  28. "test": "grunt nodeunit -v"
  29. },
  30. "dependencies": {
  31. "globule": "~0.1.0"
  32. },
  33. "devDependencies": {
  34. "grunt": "~0.4.1",
  35. "grunt-contrib-nodeunit": "~0.2.0",
  36. "grunt-contrib-jshint": "~0.6.0",
  37. "grunt-benchmark": "~0.2.0",
  38. "grunt-cli": "~0.1.13",
  39. "async": "~0.2.10",
  40. "rimraf": "~2.2.6"
  41. },
  42. "keywords": [
  43. "watch",
  44. "glob"
  45. ],
  46. "files": [
  47. "lib",
  48. "LICENSE-MIT"
  49. ]
  50. }