├── .gitignore ├── .nock └── dat-librarian │ ├── should%20exist.json │ ├── should%20fail%20to%20retrieve%20archives%20it%20has%20not%20got.json │ ├── should%20handle%20new%20archives%20by%20link.json │ ├── should%20have%20the%20new%20archive%20in%20its%20cache.json │ ├── should%20re-add%2C%20close%2C%20and%20re-load.json │ └── should%20remove%20the%20archive.json ├── .travis.yml ├── README.md ├── index.js ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | package-lock.json 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.nock/dat-librarian/should%20exist.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /.nock/dat-librarian/should%20fail%20to%20retrieve%20archives%20it%20has%20not%20got.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/.nock/dat-librarian/should%20fail%20to%20retrieve%20archives%20it%20has%20not%20got.json -------------------------------------------------------------------------------- /.nock/dat-librarian/should%20handle%20new%20archives%20by%20link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/.nock/dat-librarian/should%20handle%20new%20archives%20by%20link.json -------------------------------------------------------------------------------- /.nock/dat-librarian/should%20have%20the%20new%20archive%20in%20its%20cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/.nock/dat-librarian/should%20have%20the%20new%20archive%20in%20its%20cache.json -------------------------------------------------------------------------------- /.nock/dat-librarian/should%20re-add%2C%20close%2C%20and%20re-load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/.nock/dat-librarian/should%20re-add%2C%20close%2C%20and%20re-load.json -------------------------------------------------------------------------------- /.nock/dat-librarian/should%20remove%20the%20archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/.nock/dat-librarian/should%20remove%20the%20archive.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbados/dat-librarian/HEAD/test.js --------------------------------------------------------------------------------