├── .gitignore ├── .travis.yml ├── README.md ├── bin └── findup.js ├── index.js ├── package.json └── test ├── findup-test.js ├── fixture ├── config.json └── f │ └── e │ └── d │ └── c │ ├── b │ └── a │ │ └── top.json │ └── config.json └── mocha.opts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Filirom1/findup/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Filirom1/findup/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Filirom1/findup/HEAD/README.md -------------------------------------------------------------------------------- /bin/findup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Filirom1/findup/HEAD/bin/findup.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Filirom1/findup/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Filirom1/findup/HEAD/package.json -------------------------------------------------------------------------------- /test/findup-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Filirom1/findup/HEAD/test/findup-test.js -------------------------------------------------------------------------------- /test/fixture/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixture/f/e/d/c/b/a/top.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixture/f/e/d/c/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --------------------------------------------------------------------------------