package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "wt",
  3. "version": "1.2.0",
  4. "description": "wt: Simple dir watcher, including all subdirectories, support multi dirs",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha -R spec -t 5000 -r should test/*.test.js",
  8. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -t 5000 -r should test/*.test.js",
  9. "ci": "npm run lint && npm run test-cov",
  10. "lint": "jshint .",
  11. "autod": "autod -w --prefix '~'",
  12. "contributors": "contributors -f plain -o AUTHORS"
  13. },
  14. "dependencies": {
  15. "debug": "^2.2.0",
  16. "ndir": "^0.1.5",
  17. "sdk-base": "^2.0.1"
  18. },
  19. "devDependencies": {
  20. "autod": "*",
  21. "contributors": "*",
  22. "istanbul": "*",
  23. "jshint": "*",
  24. "mocha": "3",
  25. "pedding": "1",
  26. "rimraf": "^2.5.2",
  27. "rmdir-recursive": "~0.0.1",
  28. "should": "6"
  29. },
  30. "homepage": "https://github.com/node-modules/wt",
  31. "repository": {
  32. "type": "git",
  33. "url": "git://github.com/node-modules/wt.git"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/node-modules/wt/issues",
  37. "email": "fengmk2@gmail.com"
  38. },
  39. "keywords": [
  40. "watch",
  41. "watcher",
  42. "wt",
  43. "fs",
  44. "dir",
  45. "multi-watch",
  46. "subdir",
  47. "subdirectories"
  48. ],
  49. "engines": {
  50. "node": ">= 0.12.9"
  51. },
  52. "author": "fengmk2 <fengmk2@gmail.com> (http://fengmk2.com)",
  53. "license": "MIT"
  54. }