package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "gaze",
  3. "description": "A globbing fs.watch wrapper built from the best parts of other fine watch libs.",
  4. "version": "1.1.3",
  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": "https://github.com/shama/gaze.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/shama/gaze/issues"
  16. },
  17. "license": "MIT",
  18. "main": "lib/gaze",
  19. "engines": {
  20. "node": ">= 4.0.0"
  21. },
  22. "scripts": {
  23. "test": "semistandard && grunt nodeunit -v"
  24. },
  25. "dependencies": {
  26. "globule": "^1.0.0"
  27. },
  28. "devDependencies": {
  29. "async": "^2.6.1",
  30. "grunt": "^1.0.1",
  31. "grunt-benchmark": "^1.0.0",
  32. "grunt-cli": "^1.2.0",
  33. "grunt-contrib-jshint": "^1.1.0",
  34. "grunt-contrib-nodeunit": "^2.0.0",
  35. "rimraf": "^2.5.2",
  36. "semistandard": "^12.0.1"
  37. },
  38. "keywords": [
  39. "watch",
  40. "glob"
  41. ],
  42. "files": [
  43. "lib",
  44. "LICENSE-MIT"
  45. ],
  46. "semistandard": {
  47. "ignore": [
  48. "benchmarks",
  49. "experiments",
  50. "build",
  51. "test"
  52. ]
  53. }
  54. }