Package Exports
- filehound
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (filehound) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Filehound
Flexible and fluent interface for searching the file system

Installation
npm install --save filehoundDemo
Usage
The example below prints all of the files in a directory that have the .json file extension:
const FileHound = require('filehound');
const files = FileHound.create()
.paths('/some/dir')
.ext('json')
.find();
files.then(console.log);Documentation
For more examples and API details, see API documentation
Test
npm testTo generate a test coverage report:
npm run coverage