Нет описания

package.json 964B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "glob-watcher",
  3. "description": "Watch globs",
  4. "version": "0.0.6",
  5. "homepage": "http://github.com/wearefractal/glob-watcher",
  6. "repository": "git://github.com/wearefractal/glob-watcher.git",
  7. "author": "Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
  8. "main": "./index.js",
  9. "dependencies": {
  10. "gaze": "^0.5.1"
  11. },
  12. "devDependencies": {
  13. "mocha": "^1.17.0",
  14. "should": "^2.1.1",
  15. "mocha-lcov-reporter": "0.0.1",
  16. "coveralls": "^2.6.1",
  17. "istanbul": "^0.2.3",
  18. "rimraf": "^2.2.5",
  19. "jshint": "^2.4.1",
  20. "mkdirp": "^0.3.5"
  21. },
  22. "scripts": {
  23. "test": "mocha --reporter spec && jshint",
  24. "coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
  25. },
  26. "engines": {
  27. "node": ">= 0.9"
  28. },
  29. "licenses": [
  30. {
  31. "type": "MIT",
  32. "url": "http://github.com/wearefractal/glob-watcher/raw/master/LICENSE"
  33. }
  34. ]
  35. }