package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "author": "Troy Goode <troygoode@gmail.com> (http://github.com/troygoode/)",
  3. "name": "require-directory",
  4. "version": "2.1.1",
  5. "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.",
  6. "keywords": [
  7. "require",
  8. "directory",
  9. "library",
  10. "recursive"
  11. ],
  12. "homepage": "https://github.com/troygoode/node-require-directory/",
  13. "main": "index.js",
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/troygoode/node-require-directory.git"
  17. },
  18. "contributors": [
  19. {
  20. "name": "Troy Goode",
  21. "email": "troygoode@gmail.com",
  22. "web": "http://github.com/troygoode/"
  23. }
  24. ],
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "http://github.com/troygoode/node-require-directory/issues/"
  28. },
  29. "engines": {
  30. "node": ">=0.10.0"
  31. },
  32. "devDependencies": {
  33. "jshint": "^2.6.0",
  34. "mocha": "^2.1.0"
  35. },
  36. "scripts": {
  37. "test": "mocha",
  38. "lint": "jshint index.js test/test.js"
  39. }
  40. }