package.json 805 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "node-dir",
  3. "version": "0.1.17",
  4. "description": "asynchronous file and directory operations for Node.js",
  5. "main": "index",
  6. "homepage": "https://github.com/fshost",
  7. "repository": "https://github.com/fshost/node-dir",
  8. "author": {
  9. "name": "Nathan Cartwright",
  10. "email": "fshost@yahoo.com",
  11. "url": "https://github.com/fshost"
  12. },
  13. "directories": {
  14. "lib": "lib"
  15. },
  16. "scripts": {
  17. "test": "./node_modules/.bin/mocha --reporter spec"
  18. },
  19. "engines": {
  20. "node": ">= 0.10.5"
  21. },
  22. "license": "MIT",
  23. "keywords": [
  24. "node-dir",
  25. "directory",
  26. "dir",
  27. "subdir",
  28. "file",
  29. "asynchronous",
  30. "Node.js",
  31. "fs"
  32. ],
  33. "dependencies": {
  34. "minimatch": "^3.0.2"
  35. },
  36. "devDependencies": {
  37. "mocha": "~1.13.0",
  38. "should": "~2.0.2"
  39. }
  40. }