package.json 821 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "readdir-scoped-modules",
  3. "version": "1.1.0",
  4. "description": "Like `fs.readdir` but handling `@org/module` dirs as if they were a single entry.",
  5. "main": "readdir.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "dependencies": {
  10. "debuglog": "^1.0.1",
  11. "dezalgo": "^1.0.0",
  12. "graceful-fs": "^4.1.2",
  13. "once": "^1.3.0"
  14. },
  15. "devDependencies": {
  16. "tap": "^1.2.0"
  17. },
  18. "scripts": {
  19. "test": "tap test/*.js"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/npm/readdir-scoped-modules"
  24. },
  25. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  26. "license": "ISC",
  27. "bugs": {
  28. "url": "https://github.com/npm/readdir-scoped-modules/issues"
  29. },
  30. "homepage": "https://github.com/npm/readdir-scoped-modules",
  31. "files": [
  32. "readdir.js"
  33. ]
  34. }