package.json 704 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "fs-readdir-recursive",
  3. "description": "Recursively read a directory",
  4. "version": "1.1.0",
  5. "scripts": {
  6. "test": "mocha --reporter spec",
  7. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
  8. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
  9. },
  10. "devDependencies": {
  11. "istanbul": "0",
  12. "mocha": "3",
  13. "should": "*"
  14. },
  15. "author": {
  16. "name": "Jonathan Ong",
  17. "email": "me@jongleberry.com",
  18. "url": "http://jongleberry.com",
  19. "twitter": "https://twitter.com/jongleberry"
  20. },
  21. "repository": "fs-utils/fs-readdir-recursive",
  22. "files": [
  23. "index.js"
  24. ],
  25. "license": "MIT"
  26. }